Skip to content

Commit

Permalink
Remove logging deps from setup.py.
Browse files Browse the repository at this point in the history
In the process removing GRPC_PACKAGES entirely.
  • Loading branch information
dhermes committed Sep 26, 2016
1 parent 28fe261 commit ab4b5be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion logging/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Example of fetching entries:
entries, token = logger.list_entries()
for entry in entries:
print entry.payload
print(entry.payload)
See the ``google-cloud-python`` API `logging documentation`_ to learn how to
connect to Stackdriver Logging using this Client Library.
Expand Down
11 changes: 0 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,6 @@
'google-cloud-pubsub',
]

GRPC_PACKAGES = [
'grpcio >= 1.0.0',
'google-gax >= 0.14.1, < 0.15dev',
'gapic-google-logging-v2 >= 0.9.0, < 0.10dev',
'grpc-google-logging-v2 >= 0.9.0, < 0.10dev',
]

RTD_ENV_VAR = 'READTHEDOCS'
if RTD_ENV_VAR not in os.environ:
REQUIREMENTS.extend(GRPC_PACKAGES)

setup(
name='google-cloud',
version='0.20.0dev',
Expand Down

0 comments on commit ab4b5be

Please sign in to comment.