Skip to content

Commit

Permalink
feat: Ensure Python 3.13 support (#239)
Browse files Browse the repository at this point in the history
By running tests under the 3.13.0rc1 at CI.
  • Loading branch information
playpauseandstop authored Aug 14, 2024
1 parent 282c74f commit 77acd88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
test:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.1"]
include:
- python-version: "3.12"
dev: "true"
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,17 @@ asyncio_mode = "auto"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py37,py38,py39,py310,py310-minimum-requirements,py311
envlist = py38,py39,py310,py310-minimum-requirements,py311,py312,py313
skipsdist = True
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
allowlist_externals = poetry
Expand All @@ -146,6 +147,7 @@ commands_pre =
commands =
python3 -m pytest
# Python 3.10 is last version with aiohttp, async-timeout, and yarl wheels
[testenv:py310-minimum-requirements]
commands_pre =
poetry install --only main,test
Expand Down

0 comments on commit 77acd88

Please sign in to comment.