Skip to content

Commit b345eee

Browse files
support Python 3.13
1 parent 6eb440a commit b345eee

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646
python-version: '3.9'
4747
- os: ubuntu-latest
4848
python-version: '3.12'
49+
- os: ubuntu-latest
50+
python-version: '3.13'
4951

5052
runs-on: ${{ matrix.os }}
5153
timeout-minutes: 60

docs/admin/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ After installation, you should have a ``moin`` command available, try it:
4949

5050
moin --help
5151

52-
If you are running Python 3.12.+ and get a traceback with::
52+
If you are running Python 3.12+ and get a traceback with::
5353

5454
ModuleNotFoundError: No module named 'pkg_resources'
5555

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3132
"Topic :: Internet :: WWW/HTTP :: WSGI",
3233
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
3334
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
@@ -162,7 +163,7 @@ skips = ["B101", "B105", "B106", "B307", "B311", "B403", "B608"]
162163

163164
[tool.tox]
164165
requires = ["tox>=4.21"]
165-
envlist = ["3.9", "3.10", "3.11", "3.12", "ruff"]
166+
envlist = ["3.9", "3.10", "3.11", "3.12", "3.13", "ruff"]
166167

167168
[tool.tox.env_run_base]
168169
description = "Run tests under {base_python}"

0 commit comments

Comments
 (0)