Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 54b203a

Browse files
Specify allowed version range for dependencies
Prevent breaking changes when one of dependencies updates its major version.
1 parent 17a40f9 commit 54b203a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ def _DetectBadness():
6363
]
6464

6565
install_requires = [
66-
'httplib2>=0.8',
67-
'oauth2client>=1.4.6',
68-
'six>=1.6.1',
69-
'uritemplate>=0.6',
66+
'httplib2>=0.8,<1',
67+
'oauth2client>=2.0.0,<3',
68+
'six>=1.6.1,<2',
69+
'uritemplate>=0.6,<1',
7070
]
7171

7272
if sys.version_info < (2, 7):

0 commit comments

Comments
 (0)