Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Commit

Permalink
Fix: Limit django-storages to <1.9 (#168)
Browse files Browse the repository at this point in the history
In django-storages 1.9 the long deprecated boto storage has finally been removed, see https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst#19-2020-02-02
  • Loading branch information
antonagestam committed Feb 16, 2020
1 parent 514ae05 commit debb3c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -18,7 +18,7 @@
include_package_data=True,
install_requires=[
"Django>=1.11",
"django-storages>=1.6",
"django-storages>=1.6,<1.9",
'typing;python_version<"3.5"',
"typing-extensions",
],
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Expand Up @@ -2,7 +2,7 @@ typing;python_version<"3.5"
typing-extensions
mock
coveralls
django-storages
django-storages<1.9
boto3
boto
google-cloud-storage
Expand Down

0 comments on commit debb3c5

Please sign in to comment.