Skip to content

Commit 5bea32f

Browse files
authored
Upgrade vcrpy to 8.2.1 to fix aiohttp 3.14 compatibility (#599)
1 parent 3b2c396 commit 5bea32f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"pytest-asyncio==1.2.0",
2222
"pytest-console-scripts==1.4.1",
2323
"pytest-cov==6.0.0",
24-
"vcrpy==7.0.0",
24+
"vcrpy==7.0.0;python_version<='3.9'",
25+
"vcrpy==8.2.1;python_version>'3.9'",
2526
"aiofiles",
2627
]
2728

@@ -41,7 +42,8 @@
4142
] + tests_requires
4243

4344
install_aiohttp_requires = [
44-
"aiohttp>=3.11.2,<=3.13.2",
45+
"aiohttp>=3.11.2,<=3.13.2;python_version<='3.9'",
46+
"aiohttp>=3.11.2,<4;python_version>'3.9'",
4547
]
4648

4749
install_requests_requires = [

0 commit comments

Comments
 (0)