Skip to content

Commit 85cd905

Browse files
authored
Run tests on next Python release (#1227)
* feat: run tests on next Python release * fix: use release candidate first * fix: fix typo * feat: add Python 3.14-dev * fix: use official release * fix: change in previously missed placed
1 parent 4c8c44a commit 85cd905

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["pypy-3.9", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["pypy-3.9", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1919
os: [ubuntu-latest, macos-latest, windows-latest]
2020
exclude:
2121
# pypy3 randomly fails on Windows builds

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ build310: PYTHON_VER = python3.10
88
build311: PYTHON_VER = python3.11
99
build312: PYTHON_VER = python3.12
1010
build313: PYTHON_VER = python3.13
11+
build314: PYTHON_VER = python3.14
1112

12-
build36 build37 build38 build39 build310 build311 build312 build313: clean
13+
build36 build37 build38 build39 build310 build311 build312 build313 build314: clean
1314
$(PYTHON_VER) -m venv venv
1415
. venv/bin/activate; \
1516
pip install -U pip setuptools wheel; \

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ python =
1212
3.11: py311
1313
3.12: py312
1414
3.13: py313
15+
3.14: py314
1516

1617
[testenv]
1718
deps = -r requirements/requirements-tests.txt

0 commit comments

Comments
 (0)