From 36f37c38fc5ab09d83c7cf5300a8382b6ec054a5 Mon Sep 17 00:00:00 2001 From: Matt Seymour Date: Sun, 15 May 2022 21:06:04 +0100 Subject: [PATCH] Update map of python django supported versions. --- .github/workflows/test.yml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2d42f5..42105ab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,21 +5,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8] - django-version: [1.11, 2.0, 2.1, 2.2, 3.0] + python-version: ["3.7", "3.8", "3.9", "3.10"] + django-version: [3.2, 4.0] exclude: - # Python 2.7 is only compatible with Django 1.11 - - python-version: 2.7 - django-version: 2.0 - - python-version: 2.7 - django-version: 2.1 - - python-version: 2.7 - django-version: 2.2 - - python-version: 2.7 - django-version: 3.0 - # Python 3.5 is compatible with Django 1.11 to 2.2 but not 3.0 - - python-version: 3.5 - django-version: 3.0 + # Python 3.6 is not compatible with 4.0 + - python-version: 3.6 + django-version: 4.0 fail-fast: false steps: - uses: actions/checkout@v1