Skip to content

Commit

Permalink
Add support for Python 3.11-3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare committed Dec 28, 2024
1 parent c064a99 commit 6b348f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"

steps:
- uses: actions/[email protected]
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,8 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
[tox]
envlist = py310, lint
envlist = py310, py311, py312, py313, lint
skip_missing_interpreters = True

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

[testenv]
commands =
Expand Down

0 comments on commit 6b348f4

Please sign in to comment.