Skip to content

Commit 74fd94d

Browse files
authored
feat: declare support for django 6.0 (#821)
1 parent 47f31f9 commit 74fd94d

File tree

5 files changed

+137
-114
lines changed

5 files changed

+137
-114
lines changed

.github/workflows/tests.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
- 5.0.*
4848
- 5.1.*
4949
- 5.2.*
50+
- 6.0.*
5051
python-version:
5152
- '3.10'
5253
- '3.11'
@@ -68,9 +69,21 @@ jobs:
6869
# Django 4.2 only supports python 3.8-3.12
6970
- django-version: 4.2.*
7071
python-version: '3.13'
72+
- django-version: 4.2.*
73+
python-version: '3.14'
7174
# Django 5.0 only supports python 3.10-3.12
7275
- django-version: 5.0.*
7376
python-version: '3.13'
77+
- django-version: 5.0.*
78+
python-version: '3.14'
79+
# Django 5.1 only supports python 3.10-3.13
80+
- django-version: 5.1.*
81+
python-version: '3.14'
82+
# Django 6.0 only supports python 3.12+
83+
- django-version: 6.0.*
84+
python-version: '3.10'
85+
- django-version: 6.0.*
86+
python-version: '3.11'
7487
steps:
7588
- name: Checkout
7689
uses: actions/checkout@v4

.pre-commit-config.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,9 @@ repos:
3434
hooks:
3535
- id: prettier
3636
files: ^docs/.*\.mdx?$
37+
- repo: https://github.com/adamchainz/django-upgrade
38+
rev: 1.29.1
39+
hooks:
40+
- id: django-upgrade
41+
args:
42+
- --target-version=4.2

0 commit comments

Comments
 (0)