Skip to content

Commit ee0e24b

Browse files
authored
CI: test Python 3.14 and 3.14t in regular CI jobs (#815)
Follows up on gh-811, which added cp314/cp314t wheel builds. The `-dev` is still needed for `actions/setup-python` until after the final 3.14.0 release.
1 parent 4122c7c commit ee0e24b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- runs-on: ubuntu-latest
5252
python-version: "3.11"
5353
- runs-on: ubuntu-latest
54-
python-version: "3.11"
54+
python-version: "3.14-dev"
5555
USE_SDIST: 1
5656
OPTIONS_NAME: "install-from-sdist"
5757
- runs-on: ubuntu-latest
@@ -137,13 +137,17 @@ jobs:
137137
popd
138138
139139
test_pywavelets_linux_free_threaded:
140-
name: linux-cp313t-default
140+
name: linux-cp${{ matrix.python-version }}-default
141141
runs-on: ubuntu-latest
142+
strategy:
143+
fail-fast: false
144+
matrix:
145+
python-version: ["3.13t", "3.14t-dev"]
142146
steps:
143147
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
144148
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
145149
with:
146-
python-version: "3.13t"
150+
python-version: ${{ matrix.python-version}}
147151

148152
- name: Build package
149153
run: |

0 commit comments

Comments
 (0)