Skip to content

Commit 496c716

Browse files
committed
added support for django v6.0
1 parent 842d707 commit 496c716

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v6
1616
with:
17-
python-version: '3.10'
17+
python-version: '3.12'
1818
- name: Install Flit
19-
run: pip install flit
19+
run: pip install flit "django>=5.2"
2020
- name: Install Dependencies
2121
run: make install
2222
- name: Test

.github/workflows/test_full.yml

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,38 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
15-
django-version: [ '<3.2', '<3.3', '<4.2', '<4.3', '<5.1' ]
14+
python-version: [3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
15+
django-version: ['<3.2', '<3.3', '<4.2', '<4.3', '<5.1', '<5.2', '<5.3', '<6.1']
1616
exclude:
1717
- python-version: '3.8'
1818
django-version: '<5.1'
19+
1920
- python-version: '3.9'
2021
django-version: '<5.1'
22+
2123
- python-version: '3.12'
2224
django-version: '<3.2'
2325
- python-version: '3.12'
2426
django-version: '<3.3'
27+
28+
- python-version: '3.13'
29+
django-version: '<3.2'
30+
- python-version: '3.13'
31+
django-version: '<3.3'
32+
33+
# as of oct 2025 looks like django < 5.2 does not support python 3.14
34+
- python-version: '3.14'
35+
django-version: '<3.2'
36+
- python-version: '3.14'
37+
django-version: '<3.3'
38+
- python-version: '3.14'
39+
django-version: '<4.2'
40+
- python-version: '3.14'
41+
django-version: '<4.3'
42+
- python-version: '3.14'
43+
django-version: '<5.1'
44+
- python-version: '3.14'
45+
django-version: '<5.2'
2546
steps:
2647
- uses: actions/checkout@v6
2748
- name: Set up Python
@@ -42,7 +63,7 @@ jobs:
4263
- name: Set up Python
4364
uses: actions/setup-python@v6
4465
with:
45-
python-version: '3.10'
66+
python-version: '3.12'
4667
- name: Install Flit
4768
run: pip install flit
4869
- name: Install Dependencies

0 commit comments

Comments
 (0)