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

Commit ec30558

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

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
@@ -40,7 +40,10 @@
4040
platforms="Posix; MacOS X; Windows",
4141
include_package_data=True,
4242
install_requires=(
43-
"google-api-core >= 1.22.2, < 2.0.0dev",
43+
# NOTE: Maintainers, please do not require google-api-core>=2.x.x
44+
# Until this issue is closed
45+
# https://github.com/googleapis/google-cloud-python/issues/10566
46+
"google-api-core >= 1.22.2, <3.0.0dev",
4447
"proto-plus >= 1.10.0",
4548
"grpc-google-iam-v1",
4649
"packaging >= 14.3",

0 commit comments

Comments
 (0)