Skip to content

Commit 45e741a

Browse files
authored
Update Python and Django versions in CI workflow
1 parent a6cafaa commit 45e741a

File tree

1 file changed

+12
-18
lines changed

1 file changed

+12
-18
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,26 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
9-
django-version: ['3.2', '4.1', '4.2', '5.0', '5.1.*']
8+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
9+
django-version: ['4.2', '5.2', '6.0.*']
1010
exclude:
11-
- python-version: 3.11
12-
django-version: 3.2
13-
14-
- python-version: 3.12
15-
django-version: 3.2
11+
- python-version: 3.13
12+
django-version: 4.2
1613

17-
- python-version: 3.8
18-
django-version: 5.0
14+
- python-version: 3.14
15+
django-version: 4.2
1916

20-
- python-version: 3.9
21-
django-version: 5.0
17+
- python-version: 3.10
18+
django-version: 6.0.*
2219

23-
- python-version: 3.8
24-
django-version: 5.1.*
25-
26-
- python-version: 3.9
27-
django-version: 5.1.*
20+
- python-version: 3.11
21+
django-version: 6.0.*
2822
fail-fast: false
2923

3024
steps:
31-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v6
3226
- name: 'Set up Python ${{ matrix.python-version }}'
33-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v6
3428
with:
3529
python-version: '${{ matrix.python-version }}'
3630
cache: 'pip'

0 commit comments

Comments
 (0)