Skip to content

Commit fc02ffe

Browse files
committed
Run tests on Python 3.12
1 parent eb441f9 commit fc02ffe

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
'Programming Language :: Python :: 3.9',
3131
'Programming Language :: Python :: 3.10',
3232
'Programming Language :: Python :: 3.11',
33+
'Programming Language :: Python :: 3.12',
3334
'Topic :: Documentation',
3435
'Topic :: Documentation :: Sphinx',
3536
'Topic :: Utilities',

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
check,
4-
py37, py38, py39, py310, py311
4+
py37, py38, py39, py310, py311, py312
55
sphinx2.1,
66
sphinx-latest,
77

@@ -12,6 +12,7 @@ python =
1212
3.9: py39
1313
3.10: py310
1414
3.11: py311
15+
3.12: py312
1516

1617
[testenv]
1718
basepython =
@@ -21,6 +22,7 @@ basepython =
2122
py39: {env:TOXPYTHON:python3.9}
2223
py310: {env:TOXPYTHON:python3.10}
2324
py311: {env:TOXPYTHON:python3.11}
25+
py312: {env:TOXPYTHON:python3.12}
2426
{check,sphinx2.1,sphinx-latest}: python3
2527
passenv =
2628
*

0 commit comments

Comments
 (0)