commit | bb324623419a22fb14da1e22a847b6b09a178aad | [log] [tgz] |
---|---|---|
author | Thomas Bechtold <tbechtold@suse.com> | Mon Mar 14 19:17:59 2016 +0100 |
committer | Thomas Bechtold <tbechtold@suse.com> | Mon Mar 14 19:17:59 2016 +0100 |
tree | 94dc598adf57f737da77b71c16bd4d489880593c | |
parent | a42243ce1225bb0c8ba131b1d05deca9c891e02e [diff] [blame] |
Allow using oauth2client versions < 2 Be compatible with older oauth2client versions. This simplifies the installation (also for downstream) when software needs an older oauth2client version but also wants to use googleapiclient.
diff --git a/setup.py b/setup.py index d78f825..7dd6a0a 100644 --- a/setup.py +++ b/setup.py
@@ -64,7 +64,7 @@ install_requires = [ 'httplib2>=0.8,<1', - 'oauth2client>=2.0.0,<3', + 'oauth2client', 'six>=1.6.1,<2', 'uritemplate>=0.6,<1', ]