mirror of
https://github.com/jazzband/django-defender.git
synced 2026-03-16 22:10:32 +00:00
change django install_requires version (#101)
Fix the django install)requires version in setup.py so that it allows versions of django 1.11.x
This commit is contained in:
parent
7c6a7d2b93
commit
bcfe46ceca
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -68,7 +68,7 @@ setup(name='django-defender',
|
|||
include_package_data=True,
|
||||
packages=get_packages('defender'),
|
||||
package_data=get_package_data('defender'),
|
||||
install_requires=['Django>=1.8,<=1.11', 'redis>=2.10.3,<3.0',
|
||||
install_requires=['Django>=1.8,<1.12', 'redis>=2.10.3,<3.0',
|
||||
'hiredis>=0.2.0,<1.0', 'mockredispy>=2.9.0.11,<3.0'],
|
||||
tests_require=['mock', 'mockredispy', 'coverage', 'celery', 'django-redis-cache'],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue