Skip to content

Commit 3e81d11

Browse files
authored
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.
1 parent fe430fa commit 3e81d11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
22+
python-version: ['3.8', '3.9', '3.10', '3.11']
2323
steps:
2424
- uses: actions/checkout@v3
2525
- name: Set up Python ${{ matrix.python-version }}
@@ -71,7 +71,7 @@ jobs:
7171
python-version: ['3.8', '3.9', '3.10']
7272
django-version: ['3.2', '4.2']
7373
include:
74-
- python-version: '3.7'
74+
- python-version: '3.8'
7575
django-version: '2.2'
7676
- python-version: '3.11'
7777
django-version: '4.0'

0 commit comments

Comments
 (0)