Skip to content

Commit

Permalink
Support Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
tkukushkin committed Oct 12, 2024
1 parent d257d7c commit f35828a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
include:
- python-version: '3.10'
tox-env: tests-py310
- python-version: '3.11'
tox-env: tests-py311
- python-version: '3.12'
tox-env: tests-py312
- python-version: '3.13'
tox-env: tests-py313
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: AsyncIO",
"Framework :: Trio",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = clean, tests-py{310,311,312}, coverage, lint
envlist = clean, tests-py{310,311,312,313}, coverage, lint

[testenv]
setenv =
Expand All @@ -13,7 +13,7 @@ allowlist_externals =
commands =
rm -rf {toxworkdir}/.coverage {toxworkdir}/htmlcov {toxworkdir}/coverage.xml

[testenv:tests-py{310,311,312}]
[testenv:tests-py{310,311,312,313}]
depends =
clean
deps =
Expand Down

0 comments on commit f35828a

Please sign in to comment.