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(deps): require protobuf>= 3.12.0, <4.0.0dev #1263

Merged
merged 2 commits into from
May 26, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
# https://github.com/googleapis/google-cloud-python/issues/10566
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
"google-cloud-bigquery-storage >= 2.0.0, <3.0.0dev",
"proto-plus >= 1.15.0",
"proto-plus >= 1.15.0, <2.0.0dev",
# NOTE: Maintainers, please do not require google-cloud-core>=2.x.x
# Until this issue is closed
# https://github.com/googleapis/google-cloud-python/issues/10566
"google-cloud-core >= 1.4.1, <3.0.0dev",
"google-resumable-media >= 0.6.0, < 3.0dev",
"packaging >= 14.3",
"protobuf >= 3.12.0", # For the legacy proto-based types.
"packaging >= 14.3, <15.0.0dev",
"protobuf >= 3.12.0, <4.0.0dev", # For the legacy proto-based types.
"python-dateutil >= 2.7.2, <3.0dev",
"pyarrow >= 3.0.0, < 9.0dev",
"requests >= 2.18.0, < 3.0.0dev",
Expand Down