From ae77417a40098bf64d04047760153f47daf2975f Mon Sep 17 00:00:00 2001 From: Google APIs Date: Wed, 28 Oct 2020 11:47:59 -0700 Subject: [PATCH] fix!: update package names to avoid conflict with google-cloud-bigquery BREAKING CHANGE: update package names to avoid conflict with google-cloud-bigquery The google-cloud-bigquery package uses the `google.cloud.bigquery` path as a plain Python module, not a namespace package. When this package and google-cloud-bigquery are installed in the same environment, conflicts can result. PiperOrigin-RevId: 339505822 --- google/cloud/bigquery/connection/v1/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/google/cloud/bigquery/connection/v1/BUILD.bazel b/google/cloud/bigquery/connection/v1/BUILD.bazel index 4f71f068..8ca3b064 100644 --- a/google/cloud/bigquery/connection/v1/BUILD.bazel +++ b/google/cloud/bigquery/connection/v1/BUILD.bazel @@ -160,6 +160,7 @@ py_gapic_library( name = "connection_py_gapic", srcs = [":connection_proto"], grpc_service_config = "bigqueryconnection_grpc_service_config.json", + opt_args = ["python-gapic-namespace=google.cloud", "python-gapic-name=bigquery_connection"], ) # Open Source Packages