Skip to content

Commit 91455c9

Browse files
committed
Remove declared support for Django 4.2 and 5.1, upgrade pre-commit dependencies
1 parent ba66a7f commit 91455c9

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,8 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: ["3.10", 3.11, 3.12, 3.13, 3.14]
19-
django-version: [4.2, 5.1, 5.2, 6.0, "main"]
19+
django-version: [5.2, 6.0, "main"]
2020
exclude:
21-
22-
# Django 4.2
23-
- python-version: 3.14
24-
django-version: 4.2
25-
26-
# Django 5.1
27-
- python-version: 3.14
28-
django-version: 5.1
29-
3021
# Django 6.0
3122
- python-version: 3.10
3223
django-version: 6.0

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.14.6
3+
rev: v0.15.9
44
hooks:
55
- id: ruff-check
66
args: [--fix, --exit-non-zero-on-fix]
77
- id: ruff-format
88
types_or: [ python, pyi ]
99

1010
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
11-
rev: v2.15.0
11+
rev: v2.16.0
1212
hooks:
1313
- id: pretty-format-toml
1414
args: [--autofix]
1515

1616
- repo: https://github.com/adamchainz/django-upgrade
17-
rev: "1.29.1"
17+
rev: "1.30.0"
1818
hooks:
1919
- id: django-upgrade
2020
args: [--target-version, "4.2"]

0 commit comments

Comments
 (0)