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:
Ken Cochrane 2017-08-31 11:31:04 -04:00 committed by GitHub
parent 7c6a7d2b93
commit bcfe46ceca

View file

@ -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'],
)