Skip to content

Commit 88c85ce

Browse files
authored
🧪 Add CI testing support for Python 3.13 (#955)
1 parent ce37be5 commit 88c85ce

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
python-version: ["3.10", "3.11", "3.12"]
28+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2929
sphinx: [">=8,<9"]
3030
os: [ubuntu-latest]
3131
include:
@@ -46,6 +46,7 @@ jobs:
4646
uses: actions/setup-python@v5
4747
with:
4848
python-version: ${{ matrix.python-version }}
49+
allow-prereleases: true
4950
- name: Install dependencies
5051
run: |
5152
python -m pip install --upgrade pip

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.10",
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
2122
"Programming Language :: Python :: Implementation :: CPython",
2223
"Programming Language :: Python :: Implementation :: PyPy",
2324
"Topic :: Software Development :: Libraries :: Python Modules",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ envlist = py310-sphinx8
1616
[testenv]
1717
usedevelop = true
1818

19-
[testenv:py{310,311,312}-sphinx{7,8}]
19+
[testenv:py{310,311,312,313}-sphinx{7,8}]
2020
deps =
2121
sphinx7: sphinx>=7,<8
2222
sphinx8: sphinx>=8,<9

0 commit comments

Comments
 (0)