Skip to content

Commit 604e04f

Browse files
semarjclaude
andcommitted
Fix additional package compatibility for Python 3.10+
- Update aiohttp from 3.7.4 to >=3.9.0 - Update yarl from 1.6.3 to >=1.9.0 - Update multidict from 5.1.0 to >=6.0.0 - Restrict typed-ast to Python <3.8 (not needed in newer versions) These changes fix build failures related to missing headers and compatibility issues with Python 3.10+. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 5e4d2ae commit 604e04f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiohttp==3.7.4.post0; python_version >= "3.6"
1+
aiohttp>=3.9.0; python_version >= "3.6"
22
alabaster==0.7.12; python_version >= "3.5"
33
appdirs==1.4.4; python_version >= "3.6"
44
async-timeout==3.0.1; python_full_version >= "3.5.3" and python_version >= "3.6"
@@ -35,7 +35,7 @@ markupsafe==2.0.1; python_version >= "3.6" and python_version < "4.0"
3535
marshmallow==3.13.0; python_version >= "3.6"
3636
marshmallow-enum==1.5.1; python_version >= "3.6"
3737
mccabe==0.6.1; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
38-
multidict==5.1.0; python_version >= "3.6"
38+
multidict>=6.0.0; python_version >= "3.6"
3939
mypy-extensions==0.4.3; python_version >= "3.6"
4040
nodeenv==1.6.0; python_full_version >= "3.6.1"
4141
packaging==21.0; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
@@ -72,11 +72,11 @@ stringcase==1.2.0; python_version >= "3.6"
7272
toml==0.10.2; python_full_version >= "3.6.1" and python_version >= "3.6" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6")
7373
tomlkit==0.7.2; python_version >= "3.5" and python_full_version < "3.0.0" and python_version < "4.0" or python_version >= "3.5" and python_version < "4.0" and python_full_version >= "3.5.0"
7474
tox==3.24.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
75-
typed-ast==1.4.3; python_version >= "3.6"
75+
typed-ast==1.4.3; python_version >= "3.6" and python_version < "3.8"
7676
typing-extensions==3.10.0.0; python_version < "3.8" and python_version >= "3.6"
7777
typing-inspect==0.7.1; python_version >= "3.6"
7878
urllib3==1.26.6; python_version >= "3.5" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version < "4" and python_version >= "3.5"
7979
virtualenv==20.7.0; python_full_version >= "3.6.1"
8080
watchdog==2.1.3; python_version >= "3.6"
81-
yarl==1.6.3; python_version >= "3.6"
81+
yarl>=1.9.0; python_version >= "3.6"
8282
zipp==3.5.0; python_version < "3.8" and python_version >= "3.6"

0 commit comments

Comments
 (0)