Skip to content

Commit 96a7457

Browse files
committed
1.0.17.post1
1 parent 77b63d3 commit 96a7457

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Django Binary Database Files +Python 3.1x
2+
============================
3+
4+
Upstream: https://pypi.org/project/django-binary-database-files/
5+
+Python 3.1x
6+
17
Django Binary Database Files
28
============================
39

binary_database_files/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 0, 17)
1+
VERSION = (1, 0, 17, "post1")
22
__version__ = ".".join(map(str, VERSION))
33

44
default_app_config = "binary_database_files.apps.DatabaseFilesAppConfig"

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
DESCRIPTION = (
1010
"A storage system for Django that stores uploaded files in both the "
1111
"database and file system."
12+
"Upstream: https://pypi.org/project/django-binary-database-files/ ."
13+
"+Python 3.1x."
1214
)
1315

1416

@@ -30,7 +32,7 @@ def get_reqs(*fns):
3032
long_description = DESCRIPTION
3133

3234
setup(
33-
name="django-binary-database-files",
35+
name="django-binary-database-files-dimaqq-py31x",
3436
version=binary_database_files.__version__,
3537
description=DESCRIPTION,
3638
long_description=long_description,
@@ -62,5 +64,5 @@ def get_reqs(*fns):
6264
"pip-requirements.txt",
6365
),
6466
tests_require=get_reqs("pip-requirements-test.txt"),
65-
python_requires=">=3.6,<3.12",
67+
python_requires=">=3.6,<4",
6668
)

0 commit comments

Comments
 (0)