We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 951dd32 commit d7921f9Copy full SHA for d7921f9
setup.py
@@ -20,7 +20,12 @@
20
21
TOOL_DEPENDENCIES = "click>=6.0.0"
22
23
-DEPENDENCIES = ("google-auth>=2.15.0", "requests-oauthlib>=0.7.0")
+# TODO(https://github.com/googleapis/google-auth-library-python-oauthlib/issues/422): google-auth 2.42.0
24
+# introduces a change that isn't compatible with
25
+# google-auth-oauthlib.
26
+# Specifically https://github.com/googleapis/google-auth-library-python/commit/36ecb1d65883477d27faf9c2281fc289659b9903
27
+# which results in the unit tests to fail. Remove the upper bound once the issue is resolved.
28
+DEPENDENCIES = ("google-auth>=2.15.0,<2.42.0", "requests-oauthlib>=0.7.0")
29
30
31
with io.open("README.rst", "r") as fh:
0 commit comments