Skip to content

Commit 36d6f2a

Browse files
authored
fix(deps): pin 'google-{api,cloud}-core', 'google-auth' to allow 2.x versions (#81)
Expand pins on library dependencies in preparation for these dependencies taking a new major version. See #10566.
1 parent d828316 commit 36d6f2a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/google-cloud-compute/setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@
4444
platforms="Posix; MacOS X; Windows",
4545
include_package_data=True,
4646
install_requires=(
47-
"google-api-core[grpc] >= 1.28.0, < 2.0.0dev",
47+
# NOTE: Maintainers, please do not require google-api-core>=2.x.x
48+
# Until this issue is closed
49+
# https://github.com/googleapis/google-cloud-python/issues/10566
50+
"google-api-core[grpc] >= 1.28.0, <3.0.0dev",
4851
"proto-plus >= 1.13.0",
4952
"packaging >= 14.3",
5053
),

0 commit comments

Comments
 (0)