Skip to content

Commit bf1f47c

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

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
@@ -66,7 +66,10 @@ def readme():
6666
platforms="Posix; MacOS X; Windows",
6767
install_requires=[
6868
"google-api-core>=1.30.0", # Work-around bug in cloud core deps.
69-
"google-auth>=1.25.0,<3.0dev", # Work around pip wack.
69+
# NOTE: Maintainers, please do not require google-auth>=2.x.x
70+
# Until this issue is closed
71+
# https://github.com/googleapis/google-cloud-python/issues/10566
72+
"google-auth>=1.25.0,<3.0.0dev", # Work around pip wack.
7073
"google-cloud-bigquery>=2.19.0",
7174
"sqlalchemy>=1.2.0,<1.5.0dev",
7275
"future",

0 commit comments

Comments
 (0)