Skip to content

Commit d86caef

Browse files
Add support for python 3.14
1 parent 7a63f43 commit d86caef

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
python-version: ["3.10", "3.11", "3.12", "3.13"]
42+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
4343
django-version: ["5.0", "5.1", "5.2", "-main"]
4444

4545
steps:
@@ -75,7 +75,7 @@ jobs:
7575
strategy:
7676
fail-fast: false
7777
matrix:
78-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
78+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
7979
django-version: ["4.0", "4.1", "4.2"]
8080

8181
steps:
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: ubuntu-latest
128128
strategy:
129129
matrix:
130-
python-version: ["3.12"]
130+
python-version: ["3.13"]
131131

132132
steps:
133133
- uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- published
77

88
env:
9-
DEFAULT_PYTHON: 3.12
9+
DEFAULT_PYTHON: 3.13
1010

1111
jobs:
1212
release-pypi:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repos:
1111
args: [--fix=lf]
1212
- id: debug-statements
1313
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: "v0.14.3"
14+
rev: "v0.14.4"
1515
hooks:
1616
- id: ruff-check
1717
args: ["--fix"]
@@ -20,7 +20,7 @@ repos:
2020
exclude: ^pylint_django/tests/input.*$
2121
args: [--line-length=120]
2222
- repo: https://github.com/tox-dev/pyproject-fmt
23-
rev: "v2.11.0"
23+
rev: "v2.11.1"
2424
hooks:
2525
- id: pyproject-fmt
2626
# https://pyproject-fmt.readthedocs.io/en/latest/#calculating-max-supported-python-version

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
2424
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2526
"Framework :: Django :: 2.2",
2627
"Framework :: Django :: 3",
2728
"Framework :: Django :: 3.0",

0 commit comments

Comments
 (0)