From 5702e647b079902538083ea3b63d0aa250a0e383 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Tue, 24 May 2022 14:59:01 +0200 Subject: [PATCH] Don't run tests with Django 4.0 on Python 3.7. --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 42105ab..16851e1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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