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

Commit 8f9f974

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

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@
3939
platforms="Posix; MacOS X; Windows",
4040
include_package_data=True,
4141
install_requires=(
42-
"google-api-core[grpc] >= 1.26.0, <2.0.0dev",
42+
# NOTE: Maintainers, please do not require google-api-core>=2.x.x
43+
# Until this issue is closed
44+
# https://github.com/googleapis/google-cloud-python/issues/10566
45+
"google-api-core[grpc] >= 1.26.0, <3.0.0dev",
4346
"proto-plus >= 1.10.0",
4447
"packaging >= 14.3",
4548
),

0 commit comments

Comments
 (0)