Skip to content

Commit c6e9c0c

Browse files
authored
Merge pull request #24 from sobotklp/update-ci
Test against Django 5.1 and 5.2
2 parents 56129ec + 6df9efd commit c6e9c0c

1 file changed

Lines changed: 19 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,38 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9", "pypy-3.10"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9", "pypy-3.10"]
1212
experimental: [false]
13-
django: ["3.0", "3.1.5", "3.2.9", "4.0", "4.1", "4.2", "5.0.2"]
13+
django: ["3.0", "3.1.5", "3.2.9", "4.0", "4.1", "4.2", "5.0.2", "5.1", "5.2.5"]
1414
exclude:
1515
- python-version: "3.12" # Django uses the distutils module under the hood, which is removed in Python 3.12
1616
django: "3.0"
1717
- python-version: "3.12" # Django uses the distutils module under the hood, which is removed in Python 3.12
1818
django: "3.1.5"
19-
- python-version: "3.7" # Django 4.0 supports Python 3.8+
20-
django: "4.0"
21-
- python-version: "3.7"
22-
django: "4.1"
23-
- python-version: "3.7"
24-
django: "4.2"
25-
- python-version: "3.7" # Django 5.0 support Python 3.10+
26-
django: "5.0.2"
27-
- python-version: "3.8"
19+
- python-version: "3.8" # Django 5.0 support Python 3.10+
2820
django: "5.0.2"
2921
- python-version: "3.9"
3022
django: "5.0.2"
3123
- python-version: "pypy-3.8"
3224
django: "5.0.2"
3325
- python-version: "pypy-3.9"
3426
django: "5.0.2"
27+
- python-version: "3.8" # Django 5.1 support Python 3.10+
28+
django: "5.1"
29+
- python-version: "3.9"
30+
django: "5.1"
31+
- python-version: "pypy-3.8"
32+
django: "5.1"
33+
- python-version: "pypy-3.9"
34+
django: "5.1"
35+
- python-version: "3.8" # Django 5.2 support Python 3.10+
36+
django: "5.2.5"
37+
- python-version: "3.9"
38+
django: "5.2.5"
39+
- python-version: "pypy-3.8"
40+
django: "5.2.5"
41+
- python-version: "pypy-3.9"
42+
django: "5.2.5"
3543

3644
env:
3745
DJANGO: ${{ matrix.django }}

0 commit comments

Comments
 (0)