Skip to content

Commit 52d5769

Browse files
authored
chore: python3.14 support (#1611)
1 parent 94df5d3 commit 52d5769

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v6
1515
with:
16-
python-version: '3.13'
16+
python-version: '3.14'
1717

1818
- name: Install pre-commit
1919
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
18-
- name: Set up Python 3.13
18+
- name: Set up Python
1919
uses: actions/setup-python@v6
2020
with:
21-
python-version: "3.13"
21+
python-version: "3.14"
2222
- name: Install Poetry
2323
run: |
2424
pip install poetry

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- "3.11"
2323
- "3.12"
2424
- "3.13"
25+
- "3.14"
2526
steps:
2627
- uses: actions/checkout@v5
2728
- uses: actions/setup-python@v6

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
1717
"Programming Language :: Python :: 3.13",
18+
"Programming Language :: Python :: 3.14",
1819
"Operating System :: OS Independent",
1920
"Environment :: Web Environment",
2021
"Intended Audience :: Developers",
@@ -86,7 +87,7 @@ legacy_tox_ini = """
8687
[tox]
8788
isolated_build = true
8889
envlist =
89-
python{310,311,312,313}-django{42,50,51,52}
90+
python{310,311,312,313,314}-django{42,50,51,52}
9091
9192
[testenv]
9293
skip_install = true

0 commit comments

Comments
 (0)