Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: restore support for grpcio-gcp #418

Merged
merged 15 commits into from
Sep 1, 2022
Prev Previous commit
Next Next commit
address review feedback
  • Loading branch information
parthea committed Sep 1, 2022
commit 6225d4fad49792d88b00584f8c7596c2d02c076c
2 changes: 1 addition & 1 deletion google/api_core/grpc_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
PROTOBUF_VERSION = google.protobuf.__version__

# The grpcio-gcp package only has support for protobuf < 4
if int(PROTOBUF_VERSION.split(".")[0]) < 4:
if PROTOBUF_VERSION == "4.":
try:
import grpc_gcp

Expand Down