We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f33dad0 commit deb9b1fCopy full SHA for deb9b1f
.github/workflows/test.yml
@@ -14,6 +14,20 @@ jobs:
14
postgres-version: ['11', '12']
15
mariadb-version: ['10.3', '10.4']
16
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
21
+ django-version: '4.1'
22
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
29
30
31
# only test Django dev with PostgreSQL 12 and MariaDB 10.4
32
- django-version: '3.2'
33
postgres-version: '12'
0 commit comments