Skip to content

Commit 8b22eec

Browse files
authored
GitHub Actions: Add Python 3.14 to test matrix
Python v3.14 -- October 7th * https://www.python.org/download/pre-releases * https://www.python.org/downloads/release/python-3140rc2
1 parent 3d7a369 commit 8b22eec

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
12+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Setup python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: ${{ matrix.python }}
21+
allow-prereleases: true
2122
cache: pip
2223
cache-dependency-path: test-requirements.txt
2324
- name: Run tests
@@ -34,7 +35,7 @@ jobs:
3435
strategy:
3536
fail-fast: false
3637
matrix:
37-
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
38+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
3839
check_formatting: ['0']
3940
extra_name: ['']
4041
include:
@@ -43,9 +44,9 @@ jobs:
4344
extra_name: ', check formatting'
4445
steps:
4546
- name: Checkout
46-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4748
- name: Setup python
48-
uses: actions/setup-python@v5
49+
uses: actions/setup-python@v6
4950
with:
5051
python-version: ${{ matrix.python }}
5152
allow-prereleases: true
@@ -65,14 +66,15 @@ jobs:
6566
strategy:
6667
fail-fast: false
6768
matrix:
68-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
69+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
6970
steps:
7071
- name: Checkout
71-
uses: actions/checkout@v4
72+
uses: actions/checkout@v5
7273
- name: Setup python
73-
uses: actions/setup-python@v5
74+
uses: actions/setup-python@v6
7475
with:
7576
python-version: ${{ matrix.python }}
77+
allow-prereleases: true
7678
cache: pip
7779
cache-dependency-path: test-requirements.txt
7880
- name: Run tests

0 commit comments

Comments
 (0)