Skip to content
This repository was archived by the owner on Mar 15, 2025. It is now read-only.

Commit f486869

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

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

0 commit comments

Comments
 (0)