Skip to content

Commit d45f2ed

Browse files
committed
Start testing in Python 3.13
1 parent 7b10bb2 commit d45f2ed

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
# Keep this in sync with tox.ini
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313
platform: [ubuntu-latest, macos-latest, windows-latest]
1414
runs-on: ${{ matrix.platform }}
1515
steps:

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
isolated_build = true
33
envlist =
44
# Keep this in sync with .github/workflows/main.yml
5-
py{38,39,310,311,312}
5+
py{38,39,310,311,312,313}
66
formatting
77
typecheck
88
lint
@@ -14,8 +14,9 @@ python =
1414
3.8: py38
1515
3.9: py39
1616
3.10: py310
17-
3.11: py311, formatting, typecheck, lint, docs, release_notes
18-
3.12: py312
17+
3.11: py311
18+
3.12: py312, formatting, typecheck, lint, docs, release_notes
19+
3.13: py313
1920

2021
[testenv]
2122
deps =
@@ -25,7 +26,6 @@ commands =
2526
pytest {posargs}
2627

2728
[testenv:formatting]
28-
basepython = python312
2929
skip_install = true
3030
deps =
3131
black

0 commit comments

Comments
 (0)