Skip to content

Commit

Permalink
CI: Stop testing with Python 3.7 (#1453)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
intgr committed Apr 27, 2023
1 parent fe430fa commit 3e81d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 3e81d11

Please sign in to comment.