Skip to content

Commit

Permalink
1.0.10: add relevant tags
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswilm committed Jan 29, 2020
1 parent 8bd572e commit a24944e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ but there are some valid use cases. If your Django app is behind a caching
reverse proxy and you need to scale your application servers, it may be
simpler to store files in the database.

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.
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.

Requires:

* Django 1.11 - 2.1
* Django 1.11 - 3.0

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion binary_database_files/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals, division

VERSION = (1, 0, 9)
VERSION = (1, 0, 10)
__version__ = '.'.join(map(str, VERSION))

default_app_config = 'binary_database_files.apps.DatabaseFilesAppConfig'
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ def get_reqs(*fns):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
],
install_requires=get_reqs(
'pip-requirements-min-django.txt',
Expand Down

0 comments on commit a24944e

Please sign in to comment.