Skip to content

Commit d121ce1

Browse files
committed
(v2) Extend tox.ini to run tests on Python 3.13
Add Python version 3.13 to GitHub pipeline version matrix
1 parent 19b72ba commit d121ce1

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Topic :: Internet",
3536
"Topic :: Internet :: WWW/HTTP",
3637
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ extend-ignore=E203,RST303
99
[tox]
1010
isolated_build = True
1111
envlist =
12-
{py39,py310,py311,py312}-pypi
12+
{py39,py310,py311,py312,py313}-pypi
1313
pre-commit
1414
# min test modifies pyproject.toml so run it last
1515
py39-min
@@ -20,6 +20,7 @@ python =
2020
3.10: py310-pypi
2121
3.11: py311-pypi,pre-commit
2222
3.12: py312-pypi
23+
3.13: py313-pypi
2324

2425
[testenv]
2526
setenv=PYTHONPATH = {toxinidir}:{toxinidir}

0 commit comments

Comments
 (0)