Skip to content

Commit 640cf62

Browse files
committed
Cutting 0.18.2 release.
Only change from 0.18.1 is preventing versions of GAX / gRPC dependencies with breaking changes.
1 parent f7dede8 commit 640cf62

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ install:
66
- pip install --upgrade tox
77

88
script:
9-
- tox -e py26
109
- tox -e py27
1110
- tox -e py34
1211
- tox -e lint

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
# Refer to the Python standard library and the oauth2client and
291291
# httplib2 libraries.
292292
intersphinx_mapping = {
293-
'httplib2': ('http://bitworking.org/projects/httplib2/doc/html/', None),
293+
'httplib2': ('http://httplib2.readthedocs.io/en/latest/', None),
294294
'oauth2client': ('http://oauth2client.readthedocs.org/en/latest/', None),
295295
'pandas': ('http://pandas.pydata.org/pandas-docs/stable/', None),
296296
'python': ('https://docs.python.org/', None),

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@
2121

2222
GRPC_EXTRAS = [
2323
'grpcio >= 1.0rc1',
24-
'google-gax >= 0.12.3',
25-
'gax-google-pubsub-v1 >= 0.8.0',
26-
'grpc-google-pubsub-v1 >= 0.8.0',
27-
'gax-google-logging-v2 >= 0.8.0',
28-
'grpc-google-logging-v2 >= 0.8.0',
24+
'google-gax >= 0.12.3, < 0.14dev',
25+
'gax-google-pubsub-v1 >= 0.8.0, < 0.9dev',
26+
'grpc-google-pubsub-v1 >= 0.8.0, < 0.9dev',
27+
'gax-google-logging-v2 >= 0.8.0, < 0.9dev',
28+
'grpc-google-logging-v2 >= 0.8.0, < 0.9dev',
2929
]
3030

3131
if sys.version_info[:2] == (2, 7) and 'READTHEDOCS' not in os.environ:
3232
REQUIREMENTS.extend(GRPC_EXTRAS)
3333

3434
setup(
3535
name='gcloud',
36-
version='0.18.1',
36+
version='0.18.2',
3737
description='API Client library for Google Cloud',
3838
author='Google Cloud Platform',
3939
author_email='jjg+gcloud-python@google.com',

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ covercmd =
2020
[grpc]
2121
deps =
2222
grpcio >= 1.0rc1
23-
google-gax >= 0.12.3
24-
gax-google-pubsub-v1 >= 0.8.0
25-
grpc-google-pubsub-v1 >= 0.8.0
26-
gax-google-logging-v2 >= 0.8.0
27-
grpc-google-logging-v2 >= 0.8.0
23+
google-gax >= 0.12.3, < 0.14dev
24+
gax-google-pubsub-v1 >= 0.8.0, < 0.9dev
25+
grpc-google-pubsub-v1 >= 0.8.0, < 0.9dev
26+
gax-google-logging-v2 >= 0.8.0, < 0.9dev
27+
grpc-google-logging-v2 >= 0.8.0, < 0.9dev
2828

2929
[docs]
3030
deps =

0 commit comments

Comments
 (0)