Skip to content

Commit

Permalink
Add Python 3.13 to CI (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
bieniu authored Nov 5, 2024
1 parent 378d56e commit 78fd1ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
python-version:
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4.2.2
with:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tox]
envlist = py311, py312, lint, mypy, tests
envlist = py311, py312, py313, lint, mypy, tests
skip_missing_interpreters = True

[gh-actions]
python =
3.11: py311, lint, mypy
3.12: py312, tests
3.13: py313, tests

[testenv:lint]
basepython = python3
Expand Down

0 comments on commit 78fd1ed

Please sign in to comment.