From 3e81d1179a8cf637a65922713ea4a1e9151b85ee Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Thu, 27 Apr 2023 10:57:51 +0300 Subject: [PATCH] CI: Stop testing with Python 3.7 (#1453) Python 3.7 will be officially EOL on 27 June 2023, that's in 2 months. This simplifies updating to Django 4.2, which no longer supports Python 3.7, and allows upgrading pre-commit. I won't yet **require** Python 3.8, because the package is still compatible with 3.7, will do that after the 4.2.0 release. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ecd64fc99..797e48e90 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -71,7 +71,7 @@ jobs: python-version: ['3.8', '3.9', '3.10'] django-version: ['3.2', '4.2'] include: - - python-version: '3.7' + - python-version: '3.8' django-version: '2.2' - python-version: '3.11' django-version: '4.0'