Skip to content

Commit 0b28020

Browse files
committed
Update supported python and django versions.
Removes Django 2.2-3.1 support. Adds python 3.7 into the testing matrix. Adds Django 4.1 and Python 3.10 into the testing matrix.
1 parent ec598f5 commit 0b28020

File tree

3 files changed

+49
-221
lines changed

3 files changed

+49
-221
lines changed

.github/workflows/testing.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
python-version: [ "3.8.12", "3.9.13", "3.10.5" ]
34-
django-version: [ "3.0", "3.1", "3.2", "4.0" ]
33+
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
34+
django-version: [ "3.2", "4.0", "4.1"]
3535
drf-version: [ "3.11", "3.12", "3.13" ]
3636
exclude:
37-
# Django v4 drops Python 3.6, and 3.7 support
37+
# Python 3.7 is incompatible with Django v4+
3838
- django-version: 4.0
3939
python-version: 3.7
40-
- django-version: 4.0
41-
python-version: 3.6
42-
# DRF 3.10 is incompatible with Django v4
40+
- django-version: 4.1
41+
python-version: 3.7
42+
# DRF 3.10 is incompatible with Django v4+
4343
- django-version: 4.0
4444
drf-version: 3.10
45-
- django-version: 4.0
45+
- django-version: 4.1
4646
drf-version: 3.10
4747
steps:
4848
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)