Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ jobs:
python-version: '3.9'
- os: ubuntu-latest
python-version: '3.12'
- os: ubuntu-latest
python-version: '3.13'

runs-on: ${{ matrix.os }}
timeout-minutes: 60
Expand Down
2 changes: 1 addition & 1 deletion docs/admin/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ After installation, you should have a ``moin`` command available, try it:

moin --help

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

ModuleNotFoundError: No module named 'pkg_resources'

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
Expand Down Expand Up @@ -162,7 +163,7 @@ skips = ["B101", "B105", "B106", "B307", "B311", "B403", "B608"]

[tool.tox]
requires = ["tox>=4.21"]
envlist = ["3.9", "3.10", "3.11", "3.12", "ruff"]
envlist = ["3.9", "3.10", "3.11", "3.12", "3.13", "ruff"]

[tool.tox.env_run_base]
description = "Run tests under {base_python}"
Expand Down
Loading