Skip to content

Commit

Permalink
Add Python 3.13 support.
Browse files Browse the repository at this point in the history
Tests fail, because of matplotlib dependencies.
  • Loading branch information
donkirkby committed Jun 1, 2024
1 parent 53c86df commit 580a62b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/py-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# List at https://github.com/actions/python-versions/blob/main/versions-manifest.json
# Keep synchronized with setup.py and tox.ini
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"]
runs-on: ${{ matrix.platform }}
env:
PYTHON: ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
# See supported versions at https://devguide.python.org/#status-of-python-branches
# !!! NOTE: Keep synchronized with setup.py and py-build.yml workflow. !!!
envlist = {py38, py39, py310, py311, py312}{,-mpl,-pil}
envlist = {py38, py39, py310, py311, py312, py313}{,-mpl,-pil}
skipsdist = True

[testenv]
Expand Down

0 comments on commit 580a62b

Please sign in to comment.