Skip to content

Commit f81aac0

Browse files
authoredSep 6, 2024··
ci: add Python 3.13 (#815)
1 parent 3b0b5d0 commit f81aac0

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed
 

‎.github/workflows/reusable-pytest.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- "pypy3.8"
1919
- "pypy3.9-v7.3.14"
2020
- "pypy3.10-v7.3.17"
21+
- "3.13"
2122
- "3.12"
2223
- "3.11"
2324
- "3.10"

‎pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
"Programming Language :: Python :: Implementation :: CPython",
2728
"Programming Language :: Python :: Implementation :: PyPy",
2829
]

‎tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env_list =
77
type
88
docs
99
path
10-
{py312, py311, py310, py39, py38, pypy310, pypy39, pypy38}{, -min}
10+
{py313, py312, py311, py310, py39, py38, pypy310, pypy39, pypy38}{, -min}
1111
skip_missing_interpreters = true
1212

1313
[testenv]
@@ -54,7 +54,7 @@ commands =
5454

5555
[testenv:docs]
5656
description = build documentations
57-
base_python = python3.10
57+
base_python = python3.12
5858
extras =
5959
docs
6060
commands =
@@ -69,7 +69,7 @@ set_env =
6969
commands_pre =
7070
python -E -m pip uninstall -y build colorama
7171

72-
[testenv:{py312, py311, py310, py39, py38, pypy38, pypy39, pypy310}-min]
72+
[testenv:{py313, py312, py311, py310, py39, py38, pypy38, pypy39, pypy310}-min]
7373
description = check minimum versions required of all dependencies
7474
skip_install = true
7575
commands_pre =
@@ -105,7 +105,7 @@ commands =
105105
python -m diff_cover.diff_cover_tool --compare-branch {env:DIFF_AGAINST:origin/main} {toxworkdir}/coverage.xml
106106
depends =
107107
path
108-
{py312, py311, py310, py39, py38, pypy310, pypy39, pypy38}{, -min}
108+
{py313, py312, py311, py310, py39, py38, pypy310, pypy39, pypy38}{, -min}
109109

110110
[testenv:bump]
111111
description = bump versions, pass major/minor/patch

0 commit comments

Comments
 (0)
Please sign in to comment.