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

Commit 11e1214

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

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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 >= 1.22.2, < 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 >= 1.22.2, <3.0.0dev",
4851
"proto-plus >= 1.4.0",
4952
"packaging >= 14.3",
5053
"grpc-google-iam-v1 >= 0.12.3, < 0.13.0dev",

0 commit comments

Comments
 (0)