Skip to content

Commit 2b17f48

Browse files
committed
ci: add support for Python 3.13 and Django 5.1/5.2
1 parent d56c3ef commit 2b17f48

File tree

3 files changed

+1581
-955
lines changed

3 files changed

+1581
-955
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,21 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13-
django-version: ['4.2', '5.0']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
13+
django-version: ['4.2', '5.1', '5.2']
1414
exclude:
15-
# Exclude Python 3.8 and 3.9 with Django 5.0
15+
# Exclude Python 3.8 and 3.9 with Django 5.1 and 5.2
1616
- python-version: '3.8'
17-
django-version: '5.0'
17+
django-version: '5.1'
1818
- python-version: '3.9'
19-
django-version: '5.0'
19+
django-version: '5.1'
20+
- python-version: '3.8'
21+
django-version: '5.2'
22+
- python-version: '3.9'
23+
django-version: '5.2'
24+
# Exclude Python 3.13 with Django 4.2
25+
- python-version: '3.13'
26+
django-version: '4.2'
2027

2128
env:
2229
DJANGO_DATABASE_USER: django

0 commit comments

Comments
 (0)