Don't run tests with Django 4.0 on Python 3.7.

This commit is contained in:
Jannis Leidel 2022-05-24 14:59:01 +02:00 committed by GitHub
parent 36f37c38fc
commit 5702e647b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,11 +6,14 @@ jobs:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
django-version: [3.2, 4.0]
django-version: ["3.2", "4.0"]
exclude:
# Python 3.6 is not compatible with 4.0
- python-version: 3.6
django-version: 4.0
# Python 3.7 is not compatible with 4.0
- python-version: 3.7
django-version: 4.0
fail-fast: false
steps:
- uses: actions/checkout@v1