Skip to content

Commit b7b4fb1

Browse files
committed
ci: run tests against python 3.14
1 parent d065506 commit b7b4fb1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
16+
python-version: ['3.10', '3.11', '3.12', '3.13']
17+
include: # Adding prereleases explicitly
18+
- os: ubuntu-latest
19+
python-version: '3.14'
20+
allow-prereleases: true
21+
- os: macos-latest
22+
python-version: '3.14t'
23+
allow-prereleases: true
1724

1825
runs-on: ${{ matrix.os }}
1926

@@ -38,6 +45,7 @@ jobs:
3845
uses: actions/setup-python@v5
3946
with:
4047
python-version: ${{ matrix.python-version }}
48+
allow-prereleases: ${{ matrix.allow-prereleases || false }}
4149

4250
- name: Install dependencies
4351
run: |

0 commit comments

Comments
 (0)