Skip to content

Commit 8a9eb1e

Browse files
committed
Dropped support for django 2.2 and 3.1
1 parent 2ba6b15 commit 8a9eb1e

File tree

1 file changed

+12
-19
lines changed

1 file changed

+12
-19
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,29 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
python-version:
18-
- '3.6'
19-
- '3.7'
2018
- '3.8'
2119
- '3.9'
2220
- '3.10'
2321
django-version:
24-
- '2.2'
25-
- '3.1'
2622
- '3.2'
2723
- '4.0'
2824
- '4.1'
2925
redis-version:
3026
- 'latest'
3127

32-
# only test pre-release dependencies for the latest Python
28+
# Only test pre-release dependencies for the latest Python.
29+
# And keep testing Django 3.2 with python 3.6 and 3.7
3330
include:
31+
# Django 3.2 and python 3.6 with latest redis
32+
- django-version: '3.2'
33+
redis-version: 'latest'
34+
python-version: '3.6'
35+
36+
# Django 3.2 and python 3.7 with latest redis
37+
- django-version: '3.2'
38+
redis-version: 'latest'
39+
python-version: '3.7'
40+
3441
# latest Django with pre-release redis
3542
- django-version: '4.0'
3643
redis-version: 'master'
@@ -46,20 +53,6 @@ jobs:
4653
redis-version: 'master'
4754
python-version: '3.10'
4855

49-
# exclude python 3.6 and 3.7 for django 4.x as they are not supported see https://docs.djangoproject.com/en/dev/releases/4.0/#python-compatibility
50-
exclude:
51-
- django-version: '4.1'
52-
python-version: '3.6'
53-
54-
- django-version: '4.1'
55-
python-version: '3.7'
56-
57-
- django-version: '4.0'
58-
python-version: '3.6'
59-
60-
- django-version: '4.0'
61-
python-version: '3.7'
62-
6356
steps:
6457
- uses: actions/checkout@v2
6558

0 commit comments

Comments
 (0)