Skip to content

Commit

Permalink
Fix redis requirement (#160)
Browse files Browse the repository at this point in the history
Allow redis 3.5.*
  • Loading branch information
flaviomartins committed Jun 19, 2020
1 parent 426f01a commit 4fcee56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_package_data(package):
include_package_data=True,
packages=find_packages(),
package_data=get_package_data("defender"),
install_requires=["Django>=1.8,<=3.1", "redis<=3.5"],
install_requires=["Django>=1.8,<=3.1", "redis<3.6"],
tests_require=[
"mock",
"mockredispy>=2.9.0.11,<3.0",
Expand Down

0 comments on commit 4fcee56

Please sign in to comment.