Skip to content

Commit 58ee826

Browse files
committed
Test Python 3.13 and 3.14
1 parent 3f35ea3 commit 58ee826

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]
34+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.10"]
3535
os: [ubuntu-latest, windows-latest]
3636
include:
3737
- python: "3.7"
@@ -46,6 +46,10 @@ jobs:
4646
tox_env: "py311-pytest7"
4747
- python: "3.12"
4848
tox_env: "py312-pytest7"
49+
- python: "3.13"
50+
tox_env: "py313-pytest7"
51+
- python: "3.14"
52+
tox_env: "py314-pytest7"
4953
- python: "pypy3.10"
5054
tox_env: "pypy3-pytest7"
5155

@@ -62,6 +66,7 @@ jobs:
6266
uses: actions/setup-python@v5
6367
with:
6468
python-version: ${{ matrix.python }}
69+
allow-prereleases: true
6570

6671
- name: Install tox
6772
run: |

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
minversion = 4.0
33
isolated_build = true
44
envlist =
5-
py{37,38,39,310,311,312,py3}-pytest7
5+
py{37,38,39,310,311,312,313,314,py3}-pytest7
66
py37-pytest{4,5,6}
77
flake8
88

0 commit comments

Comments
 (0)