Skip to content

Commit d67ecba

Browse files
author
Yalin Li
authored
[Tables][ACR] Update aiohttp version in pypy (#33785)
* Update dev_requirements.txt * Update dev_requirements.txt
1 parent a82e556 commit d67ecba

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
-e ../../../tools/azure-sdk-tools
22
-e ../../../tools/azure-devtools
33
../../core/azure-core
4-
aiohttp>=3.0
4+
# Aiohttp 3.8.6 triggers https://github.com/aio-libs/aiohttp/issues/4581 on pypy for some reasons
5+
aiohttp>=3.0, <3.8.6; platform_python_implementation == "PyPy"
6+
aiohttp>=3.0 ; platform_python_implementation != "PyPy"
57
azure-identity

sdk/tables/azure-data-tables/dev_requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
-e ../../resources/azure-mgmt-resource
55
../../core/azure-core
66
../../nspkg/azure-data-nspkg
7-
aiohttp
7+
# Aiohttp 3.8.6 triggers https://github.com/aio-libs/aiohttp/issues/4581 on pypy for some reasons
8+
aiohttp<3.8.6 ; platform_python_implementation == "PyPy"
9+
aiohttp ; platform_python_implementation != "PyPy"
810
azure-identity
911
python-dateutil>=2.8.0

0 commit comments

Comments
 (0)