Skip to content

Commit

Permalink
Add version bounds for all dependencies (close #208)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhadam committed Oct 1, 2018
1 parent 29875d1 commit 3e5fdaa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@
],

install_requires=[
"greenlet==0.4.10",
"requests==2.2.1",
"pycontracts==1.7.6",
"celery==3.1.11",
"gevent==1.0.2",
"redis==2.9.1",
"six==1.9.0"
"greenlet>=0.4.10,<1.0.0",
"requests>=2.2.1,<3.0.0",
"pycontracts>=1.7.6,<2.0.0",
"celery>=3.1.11,<4.0.0",
"gevent>=1.0.2,<2.0.0",
"redis>=2.9.1,<3.0.0",
"six>=1.9.0,<2.0.0"
],
)

0 comments on commit 3e5fdaa

Please sign in to comment.