Skip to content

Commit 088a597

Browse files
fix: support google-auth >= 2.46.0 (#433)
Fixes #422 --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 631ac72 commit 088a597

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

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

2121
TOOL_DEPENDENCIES = "click>=6.0.0"
2222

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")
23+
DEPENDENCIES = (
24+
# Exclude google-auth 2.43.0, 2.44.0, 2.45.0 due to an incompatibility.
25+
# See: https://github.com/googleapis/google-auth-library-python-oauthlib/issues/422
26+
"google-auth>=2.15.0,<3.0.0,!=2.43.0,!=2.44.0,!=2.45.0",
27+
"requests-oauthlib>=0.7.0",
28+
)
2929

3030

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

0 commit comments

Comments
 (0)