Skip to content

Commit d7921f9

Browse files
authored
fix: add upper-bound to google-auth dependency (#423)
1 parent 951dd32 commit d7921f9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@
2020

2121
TOOL_DEPENDENCIES = "click>=6.0.0"
2222

23-
DEPENDENCIES = ("google-auth>=2.15.0", "requests-oauthlib>=0.7.0")
23+
# 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")
2429

2530

2631
with io.open("README.rst", "r") as fh:

0 commit comments

Comments
 (0)