Skip to content

Commit

Permalink
setup.cfg: Unblock redis>=4.0.2 (#542, #570)
Browse files Browse the repository at this point in the history
Upstream commit redis/redis-py@d2b2333
that is included with redis-py >=4.0.2 adds method Redis.sentinel_masters
by making class Redis inherit from SentinelCommands, where the related code resides.

Related to issue #542, follow-up to pull request #570
  • Loading branch information
hartwork committed Dec 3, 2021
1 parent 99305b1 commit 5cd31d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ packages =
django_redis.compressors
install_requires =
Django>=2.2
redis>=3.0.0
redis>=3,!=4.0.0,!=4.0.1

[options.extras_require]
hiredis = redis[hiredis]>=3.0.0
hiredis = redis[hiredis]>=3,!=4.0.0,!=4.0.1

[coverage:run]
omit =
Expand Down

0 comments on commit 5cd31d2

Please sign in to comment.