Skip to content

Commit 13b6110

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

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/google-cloud-vision/setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
version = "2.4.0"
2323
release_status = "Development Status :: 5 - Production/Stable"
2424
dependencies = [
25-
"google-api-core[grpc] >= 1.26.0, <2.0.0dev",
25+
# NOTE: Maintainers, please do not require google-api-core>=2.x.x
26+
# Until this issue is closed
27+
# https://github.com/googleapis/google-cloud-python/issues/10566
28+
"google-api-core[grpc] >= 1.26.0, <3.0.0dev",
2629
"proto-plus >= 1.15.0",
2730
"packaging >= 14.3",
2831
]

0 commit comments

Comments
 (0)