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 777d163 commit 74e5816Copy full SHA for 74e5816
2 files changed
packages/google-auth/setup.py
@@ -47,7 +47,10 @@
47
# TODO(https://github.com/googleapis/google-auth-library-python/issues/1739): Add bounds for urllib3 and packaging dependencies.
48
urllib3_extra_require = ["urllib3", "packaging"]
49
50
-rsa_extra_require = ["rsa>=3.1.4,<5"]
+rsa_extra_require = [
51
+ "rsa>=3.1.4,<5; python_version < '3.11'",
52
+ "rsa>=4.0,<5; python_version >= '3.11'",
53
+]
54
55
# Unit test requirements.
56
testing_extra_require = [
packages/google-auth/testing/constraints-extras-3.14.txt
@@ -6,6 +6,6 @@ cryptography==41.0.5
6
pyjwt==2.0
7
pyopenssl==23.2.0
8
pyu2f==0.1.5
9
-rsa==3.1.4
+rsa==4.0
10
aiohttp==3.9.0
11
requests==2.25.0
0 commit comments