Skip to content

Commit deb9b1f

Browse files
authored
Prune test matrix of unsupported python/django combinations (#639)
1 parent f33dad0 commit deb9b1f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yml

+14
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,20 @@ jobs:
1414
postgres-version: ['11', '12']
1515
mariadb-version: ['10.3', '10.4']
1616
exclude:
17+
# Django >=4.0 drops support for python 3.7 (https://docs.djangoproject.com/en/4.1/faq/install/)
18+
- python-version: '3.7'
19+
django-version: '4.0'
20+
- python-version: '3.7'
21+
django-version: '4.1'
22+
- python-version: '3.7'
23+
django-version: 'main'
24+
25+
# Django <=4.0 doesn't support python 3.11 (https://docs.djangoproject.com/en/4.1/faq/install/)
26+
- python-version: '3.11'
27+
django-version: '3.2'
28+
- python-version: '3.11'
29+
django-version: '4.0'
30+
1731
# only test Django dev with PostgreSQL 12 and MariaDB 10.4
1832
- django-version: '3.2'
1933
postgres-version: '12'

0 commit comments

Comments
 (0)