Skip to content

Commit 3f32b7f

Browse files
authored
Add Python 3.14 to the CI workflow matrix (#67)
1 parent d388f1f commit 3f32b7f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,17 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
strategy:
13+
fail-fast: false
1314
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
15+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1516

1617
steps:
1718
- uses: actions/checkout@v5
1819
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2021
with:
2122
python-version: ${{ matrix.python-version }}
23+
allow-prereleases: true
2224
- name: Install dependencies
2325
run: |
2426
python -m pip install --upgrade pip

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ python =
3434
3.11: py311
3535
3.12: py312
3636
3.13: py313
37+
3.14: py314

0 commit comments

Comments
 (0)