Skip to content

Commit 7374492

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

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • packages/google-cloud-network-connectivity

packages/google-cloud-network-connectivity/setup.py

Lines changed: 4 additions & 1 deletion
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.26.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.26.0, <3.0.0dev",
4851
"proto-plus >= 1.4.0",
4952
"packaging >= 14.3",
5053
),

0 commit comments

Comments
 (0)