Skip to content

Commit 220c803

Browse files
authored
Add official support & test with Python 3.14 (#850)
1 parent f4ebc79 commit 220c803

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install uv & Python
1717
uses: astral-sh/setup-uv@v7
1818
with:
19-
python-version: "3.13"
19+
python-version: "3.14"
2020
- uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
python-version: ["3.10", "3.11", "3.12", "3.13"]
31+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3232
steps:
3333
- uses: actions/checkout@v5
3434
- name: Install uv & Python ${{ matrix.python-version }}
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
fail-fast: false
5252
matrix:
53-
python-version: ["3.10", "3.11", "3.12", "3.13"]
53+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
5454
steps:
5555
- uses: actions/checkout@v5
5656
- name: Install uv & Python ${{ matrix.python-version }}
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-latest
6868
strategy:
6969
matrix:
70-
python-version: ["3.13"]
70+
python-version: ["3.14"]
7171
fail-fast: false
7272
steps:
7373
- uses: actions/checkout@v5
@@ -90,7 +90,7 @@ jobs:
9090
- name: Install uv & Python
9191
uses: astral-sh/setup-uv@v7
9292
with:
93-
python-version: "3.13"
93+
python-version: "3.14"
9494
- name: Ensure uv.lock is up to date
9595
run: env --unset=UV_FROZEN uv lock --check
9696
- name: Build

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
"Typing :: Typed",
2223
"Framework :: Django",
2324
]

0 commit comments

Comments
 (0)