Skip to content

Commit 457441c

Browse files
authored
Add Python 3.14 to the CI workflow matrix
1 parent ff12c88 commit 457441c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
14+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1515

1616
steps:
1717
- uses: actions/checkout@v5
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ matrix.python-version }}
22+
allow-prereleases: true
2223
- name: Install dependencies
2324
run: |
2425
python -m pip install --upgrade pip

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ envlist =
33
py{38,39,310,311}-dj42
44
py{310,311,312}-dj50
55
py{310,311,312}-dj51
6-
py{310,311,312,313}-dj52
7-
py{312,313}-djmain
6+
py{310,311,312,313,314}-dj52
7+
py{312,313,314}-djmain
88

99
skipsdist = True
1010

@@ -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)