Skip to content

Commit a24944e

Browse files
committed
1.0.10: add relevant tags
1 parent 8bd572e commit a24944e

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ but there are some valid use cases. If your Django app is behind a caching
1212
reverse proxy and you need to scale your application servers, it may be
1313
simpler to store files in the database.
1414

15-
Based upon django-database-files by [Kimetrica](https://github.com/kimetrica/django-database-files), [rhunwicks](https://github.com/rhunwicks/django-database-files), [chrisspen](https://github.com/chrisspen/django-database-files-3000), [bfirsh](https://github.com/bfirsh/django-database-files) but updated to work with Django 1.11-2.1, Python 2/3 and to use a binary field for storage.
15+
Based upon django-database-files by [Kimetrica](https://github.com/kimetrica/django-database-files), [rhunwicks](https://github.com/rhunwicks/django-database-files), [chrisspen](https://github.com/chrisspen/django-database-files-3000), [bfirsh](https://github.com/bfirsh/django-database-files) but updated to work with Django 1.11-3.0, Python 2/3 and to use a binary field for storage.
1616

1717
Requires:
1818

19-
* Django 1.11 - 2.1
19+
* Django 1.11 - 3.0
2020

2121
Installation
2222
------------

binary_database_files/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import unicode_literals, division
33

4-
VERSION = (1, 0, 9)
4+
VERSION = (1, 0, 10)
55
__version__ = '.'.join(map(str, VERSION))
66

77
default_app_config = 'binary_database_files.apps.DatabaseFilesAppConfig'

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,13 @@ def get_reqs(*fns):
5050
'Programming Language :: Python :: 3.4',
5151
'Programming Language :: Python :: 3.5',
5252
'Programming Language :: Python :: 3.6',
53-
'Programming Language :: Python :: 3.7'
53+
'Programming Language :: Python :: 3.7',
54+
'Programming Language :: Python :: 3.8',
55+
'Framework :: Django :: 1.11',
56+
'Framework :: Django :: 2.0',
57+
'Framework :: Django :: 2.1',
58+
'Framework :: Django :: 2.2',
59+
'Framework :: Django :: 3.0',
5460
],
5561
install_requires=get_reqs(
5662
'pip-requirements-min-django.txt',

0 commit comments

Comments
 (0)