Skip to content

Commit a7e0410

Browse files
committed
fix aiohttp issue
1 parent f0b0a4f commit a7e0410

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

packages/google-auth/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@
2929

3030
requests_extra_require = ["requests >= 2.20.0, < 3.0.0"]
3131

32-
aiohttp_extra_require = ["aiohttp >= 3.8.0, < 4.0.0", *requests_extra_require]
32+
aiohttp_extra_require = [
33+
"aiohttp >= 3.8.0, < 4.0.0; python_version < '3.11'",
34+
"aiohttp >= 3.9.0, < 4.0.0; python_version >= '3.11'",
35+
*requests_extra_require,
36+
]
3337

3438
pyjwt_extra_require = ["pyjwt>=2.0"]
3539

packages/google-auth/testing/constraints-extras-3.14.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ pyjwt==2.0
77
pyopenssl==20.0.0
88
pyu2f==0.1.5
99
rsa==3.1.4
10-
aiohttp==3.8.0
10+
aiohttp==3.9.0
1111
requests==2.20.0
1212
urllib3==1.21.1

0 commit comments

Comments
 (0)