Skip to content

Commit 3203359

Browse files
Test with Python 3.13 (#480)
1 parent 72db274 commit 3203359

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ jobs:
2727
- python: "3.11"
2828
tox: py311
2929
- python: "3.12"
30-
tox: py312,py312-trio
30+
tox: py312
3131
- python: "3.12"
3232
tox: pep8
33+
- python: "3.13"
34+
tox: py313,py313-trio
3335
- python: "3.11"
3436
tox: mypy
3537
steps:

.mergify.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ queue_rules:
1414
- "check-success=test (3.9, py39)"
1515
- "check-success=test (3.10, py310)"
1616
- "check-success=test (3.11, py311)"
17-
- "check-success=test (3.12, py312,py312-trio)"
17+
- "check-success=test (3.12, py312)"
18+
- "check-success=test (3.13, py313,py313-trio)"
1819
- "check-success=test (3.12, pep8)"
1920

2021
pull_request_rules:

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifier =
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
Topic :: Utilities
2223

2324
[options]

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
2-
envlist = py3{8,9,10,11,12,12-trio}, pep8, pypy3
2+
# we only test trio on latest python version
3+
envlist = py3{8,9,10,11,12,13,13-trio}, pep8, pypy3
34
skip_missing_interpreters = True
45

56
[testenv]
@@ -10,9 +11,9 @@ deps =
1011
.[doc]
1112
trio: trio
1213
commands =
13-
py3{8,9,10,11,12},pypy3: pytest {posargs}
14-
py3{8,9,10,11,12},pypy3: sphinx-build -a -E -W -b doctest doc/source doc/build
15-
py3{8,9,10,11,12},pypy3: sphinx-build -a -E -W -b html doc/source doc/build
14+
py3{8,9,10,11,12,13},pypy3: pytest {posargs}
15+
py3{8,9,10,11,12,13},pypy3: sphinx-build -a -E -W -b doctest doc/source doc/build
16+
py3{8,9,10,11,12,13},pypy3: sphinx-build -a -E -W -b html doc/source doc/build
1617

1718
[testenv:pep8]
1819
basepython = python3

0 commit comments

Comments
 (0)