Skip to content

Commit

Permalink
Add support for Python 3.11-3.13 (#1056)
Browse files Browse the repository at this point in the history
* Add support for Python 3.11-3.13

* Fix tox envs
  • Loading branch information
MartinHjelmare authored Dec 27, 2024
1 parent 4415da5 commit 29bc639
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 @@ -39,6 +39,9 @@
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

CONFIG = {
Expand Down
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, docs
envlist = py310, py311, py312, py313, lint, docs
skip_missing_interpreters = True

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

[testenv]
commands =
Expand Down

0 comments on commit 29bc639

Please sign in to comment.