Skip to content

Commit e8aed24

Browse files
authored
ci: run tests against python 3.14 (#1660)
1 parent d065506 commit e8aed24

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020
- uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.9
22+
python-version: 3.13
2323
- name: Build dist files
2424
run: |
2525
python -m pip install --upgrade pip

.github/workflows/run-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ 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', '3.14', '3.14t']
1717

1818
runs-on: ${{ matrix.os }}
1919

@@ -38,6 +38,7 @@ jobs:
3838
uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ matrix.python-version }}
41+
allow-prereleases: ${{ matrix.allow-prereleases || false }}
4142

4243
- name: Install dependencies
4344
run: |

0 commit comments

Comments
 (0)