Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit 1163f2b

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 googleapis/google-cloud-python#10566.
1 parent ca14938 commit 1163f2b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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.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)