File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed
Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1717import os
1818
1919try :
20- from google .logging .v2 .config_service_v2_api import (
20+ from google .cloud . logging .v2 .config_service_v2_api import (
2121 ConfigServiceV2Api as GeneratedSinksAPI )
22- from google .logging .v2 .logging_service_v2_api import (
22+ from google .cloud . logging .v2 .logging_service_v2_api import (
2323 LoggingServiceV2Api as GeneratedLoggingAPI )
24- from google .logging .v2 .metrics_service_v2_api import (
24+ from google .cloud . logging .v2 .metrics_service_v2_api import (
2525 MetricsServiceV2Api as GeneratedMetricsAPI )
2626 from gcloud .logging ._gax import _LoggingAPI as GAXLoggingAPI
2727 from gcloud .logging ._gax import _MetricsAPI as GAXMetricsAPI
Original file line number Diff line number Diff line change 2626
2727# pylint: disable=ungrouped-imports
2828try :
29- from google .pubsub .v1 .publisher_api import (
29+ from google .cloud . pubsub .v1 .publisher_api import (
3030 PublisherApi as GeneratedPublisherAPI )
31- from google .pubsub .v1 .subscriber_api import (
31+ from google .cloud . pubsub .v1 .subscriber_api import (
3232 SubscriberApi as GeneratedSubscriberAPI )
3333 from gcloud .pubsub ._gax import _PublisherAPI as GAXPublisherAPI
3434 from gcloud .pubsub ._gax import _SubscriberAPI as GAXSubscriberAPI
Original file line number Diff line number Diff line change 2121
2222GRPC_EXTRAS = [
2323 'grpcio >= 1.0rc1' ,
24- 'google-gax >= 0.12.3, < 0.13dev ' ,
25- 'gax-google-pubsub-v1 >= 0.7.12, < 0.8dev ' ,
26- 'grpc-google-pubsub-v1 >= 0.7.12, < 0.8dev ' ,
27- 'gax-google-logging-v2 >= 0.7.12, < 0.8dev ' ,
28- 'grpc-google-logging-v2 >= 0.7.12, < 0.8dev ' ,
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 ' ,
2929]
3030
3131if sys .version_info [:2 ] == (2 , 7 ) and 'READTHEDOCS' not in os .environ :
3232 REQUIREMENTS .extend (GRPC_EXTRAS )
3333
3434setup (
3535 name = 'gcloud' ,
36- version = '0.18.0 ' ,
36+ version = '0.18.1 ' ,
3737 description = 'API Client library for Google Cloud' ,
3838 author = 'Google Cloud Platform' ,
3939 author_email = 'jjg+gcloud-python@google.com' ,
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ covercmd =
2020[grpc]
2121deps =
2222 grpcio >= 1.0rc1
23- google-gax >= 0.12.3, < 0.13dev
24- gax-google-pubsub-v1 >= 0.7.12, < 0.8dev
25- grpc-google-pubsub-v1 >= 0.7.12, < 0.8dev
26- gax-google-logging-v2 >= 0.7.12, < 0.8dev
27- grpc-google-logging-v2 >= 0.7.12, < 0.8dev
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
2828
2929[docs]
3030deps =
You can’t perform that action at this time.
0 commit comments