Skip to content

Commit 5d79795

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

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
@@ -65,7 +65,10 @@
6565
platforms="Posix; MacOS X; Windows",
6666
include_package_data=True,
6767
install_requires=(
68-
"google-api-core[grpc] >= 1.22.2, < 2.0.0dev",
68+
# NOTE: Maintainers, please do not require google-api-core>=2.x.x
69+
# Until this issue is closed
70+
# https://github.com/googleapis/google-cloud-python/issues/10566
71+
"google-api-core[grpc] >= 1.22.2, <3.0.0dev",
6972
"proto-plus >= 1.10.1",
7073
"packaging >= 14.3",
7174
"google-cloud-storage >= 1.32.0, < 2.0.0dev",

0 commit comments

Comments
 (0)