commit | 54b203aecfcfda41d5427cde7d586cbc5c233685 | [log] [tgz] |
---|---|---|
author | Dmitry Sadovnychyi <dyriax@gmail.com> | Wed Feb 17 18:02:04 2016 +0800 |
committer | Nathaniel Manista <nathaniel@google.com> | Fri Feb 19 14:29:48 2016 +0000 |
tree | e759f234a680cac655e7408b3b52c801f0773a55 | |
parent | 17a40f98d2554c6b2e7477a7673d584d13ad09c1 [diff] [blame] |
Specify allowed version range for dependencies Prevent breaking changes when one of dependencies updates its major version.
diff --git a/setup.py b/setup.py index 2f2b164..d78f825 100644 --- a/setup.py +++ b/setup.py
@@ -63,10 +63,10 @@ ] install_requires = [ - 'httplib2>=0.8', - 'oauth2client>=1.4.6', - 'six>=1.6.1', - 'uritemplate>=0.6', + 'httplib2>=0.8,<1', + 'oauth2client>=2.0.0,<3', + 'six>=1.6.1,<2', + 'uritemplate>=0.6,<1', ] if sys.version_info < (2, 7):