Skip to content

Commit

Permalink
Explicitly specify redis-py >= 3.0.0 as dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Dec 19, 2018
1 parent d8b9d37 commit a981bb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
readme = fh.read()

extras_require = {
'backends': ['peewee', 'redis', 'simpledb'],
'redis': ['redis'],
'backends': ['peewee', 'redis>=3.0.0', 'simpledb'],
'redis': ['redis>=3.0.0'],
'simpledb': ['simpledb'],
'sqlite': ['peewee'],
}
Expand Down

0 comments on commit a981bb2

Please sign in to comment.