Skip to content

Commit 1a9737a

Browse files
committed
Remove unsupported Python/Django combinations
1 parent 55feddb commit 1a9737a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ jobs:
2323
strategy:
2424
matrix:
2525
include:
26+
# Test with all supported Django versions, for all compatible Python versions.
27+
# See https://docs.djangoproject.com/en/4.0/faq/install/#what-python-version-can-i-use-with-django for the official matrix.
28+
# Additionally test on Django’s main branch with the most recent Python version.
2629
- python: "3.7"
2730
toxenv: py37-dj22,py37-dj30,py37-dj31,py37-dj32
2831
- python: "3.8"
2932
toxenv: py38-dj22,py38-dj30,py38-dj31,py38-dj32
3033
- python: "3.9"
31-
toxenv: py39-dj22,py39-dj30,py39-dj31,py39-dj32,py39-djmain
34+
toxenv: py39-dj22,py39-dj30,py39-dj31,py39-dj32
3235
- python: "3.10"
33-
toxenv: py310-dj22,py310-dj30,py310-dj31,py310-dj32,py310-djmain
36+
toxenv: py310-dj32,py310-djmain
3437
steps:
3538
- uses: actions/checkout@v2
3639
- uses: actions/setup-python@v2

0 commit comments

Comments
 (0)