Skip to content

Commit

Permalink
build: Do not attempt to install aiohttp 3.8 and others at py312
Browse files Browse the repository at this point in the history
And continue to use `py310` for that needs.
  • Loading branch information
playpauseandstop committed Aug 14, 2024
1 parent 576d983 commit 7587450
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ asyncio_mode = "auto"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38,py39,py310,py311,py312,py312-minimum-requirements,py313
envlist = py38,py39,py310,py310-minimum-requirements,py311,py312,py313
skipsdist = True
[gh-actions]
Expand All @@ -147,7 +147,8 @@ commands_pre =
commands =
python3 -m pytest
[testenv:py312-minimum-requirements]
# Python 3.10 is last version with aiohttp, async-timeout, and yarl wheels
[testenv:py310-minimum-requirements]
commands_pre =
poetry install --only main,test
python3 -m pip install aiohttp==3.8.1 async-timeout==4.0.2 yarl==1.5.1
Expand Down

0 comments on commit 7587450

Please sign in to comment.