Skip to content

Commit

Permalink
setup.py: set an upper bound on dependencies version (#352)
Browse files Browse the repository at this point in the history
This should make this library more robust in case of breaking changes in one of
its dependencies.
  • Loading branch information
JordanP authored and busunkim96 committed Jul 16, 2019
1 parent 49a18c4 commit 38166b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@


DEPENDENCIES = (
'cachetools>=2.0.0',
'cachetools>=2.0.0,<3.0',
'pyasn1-modules>=0.2.1',
'rsa>=3.1.4',
'rsa>=3.1.4,<4.0',
'setuptools>=40.3.0',
'six>=1.9.0',
)
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ deps =
flask
mock
oauth2client
pytest
pytest<5.0
pytest-cov
pytest-localserver
requests
Expand Down

0 comments on commit 38166b2

Please sign in to comment.