Skip to content

Commit 2ac2710

Browse files
committed
Run test suite against Python 3.13 and PyPy 3.10
1 parent 8f1b71f commit 2ac2710

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ jobs:
2828
- '3.10'
2929
- '3.11'
3030
- '3.12'
31+
- '3.13'
3132
- pypy-3.8
3233
- pypy-3.9
34+
- pypy-3.10
3335
steps:
3436
- uses: actions/checkout@v4
3537
- uses: actions/setup-python@v5

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
2930
"Programming Language :: Python :: Implementation :: CPython",
3031
"Programming Language :: Python :: Implementation :: PyPy",
3132
"Topic :: Software Development :: Testing",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
envlist =
55
lint
66
format
7-
py3{8,9,10,11,12}
8-
pypy3{8,9}
7+
py3{8,9,10,11,12,13}
8+
pypy3{8,9,10}
99
package
1010
docs
1111
clean

0 commit comments

Comments
 (0)