Skip to content

Commit 2a27f04

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

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packages/google-cloud-domains/setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@
4343
],
4444
include_package_data=True,
4545
install_requires=(
46-
"google-api-core[grpc] >= 1.26.0, <2.0.0dev",
46+
# NOTE: Maintainers, please do not require google-api-core>=2.x.x
47+
# Until this issue is closed
48+
# https://github.com/googleapis/google-cloud-python/issues/10566
49+
"google-api-core[grpc] >= 1.26.0, <3.0.0dev",
4750
"proto-plus >= 1.4.0",
4851
"packaging >= 14.3",
4952
),

0 commit comments

Comments
 (0)