Skip to content

Commit 28467c8

Browse files
committed
Drop oauth2client as a submodule.
Previously, we'd kept `oauth2client` as a submodule, so that we could easily track changes at HEAD. Going forward, we won't need to do this, so we switch to having an explicit dependency in `setup.py`.
1 parent 751b7fb commit 28467c8

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
[submodule "oauth2client"]
2-
path = oauth2client
3-
url = https://github.com/google/oauth2client.git

oauth2client

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,19 @@
2222
import sys
2323

2424
if sys.version_info <= (2, 6):
25-
print('oauth2client requires python version >= 2.6.', file=sys.stderr)
25+
print('google-api-python-client requires python version >= 2.6.',
26+
file=sys.stderr)
2627
sys.exit(1)
2728

2829
from setuptools import setup
2930

3031
packages = [
3132
'googleapiclient',
32-
'oauth2client',
3333
]
3434

3535
install_requires = [
3636
'httplib2>=0.8',
37+
'oauth2client>=1.3',
3738
'uritemplate>=0.6',
3839
]
3940

@@ -63,7 +64,4 @@
6364
'Operating System :: POSIX',
6465
'Topic :: Internet :: WWW/HTTP',
6566
],
66-
package_dir={
67-
'oauth2client':'oauth2client/oauth2client',
68-
},
6967
)

0 commit comments

Comments
 (0)