Change setup.py to allow for Django 3.1.x versions

This commit is contained in:
Martin Braun 2020-10-14 13:47:55 +02:00 committed by Ken Cochrane
parent 0ad3690e6f
commit 1366adc59f

View file

@ -56,7 +56,7 @@ setup(
include_package_data=True,
packages=find_packages(),
package_data=get_package_data("defender"),
install_requires=["Django>=1.8,<=3.1", "redis<3.6"],
install_requires=["Django>=1.8,<3.2", "redis<3.6"],
tests_require=[
"mock",
"mockredispy>=2.9.0.11,<3.0",