Skip to content

Commit 0e8f745

Browse files
committed
Drop support for Python 3.7
Python 3.7 reached the end of its supported life in June 2023.
1 parent be4f490 commit 0e8f745

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.7]
16+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.8]
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python ${{ matrix.python-version }}

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ def run_tests(self):
5959
'Operating System :: OS Independent',
6060
'Programming Language :: Python',
6161
'Programming Language :: Python :: 3',
62-
'Programming Language :: Python :: 3.7',
6362
'Programming Language :: Python :: 3.8',
6463
'Programming Language :: Python :: 3.9',
6564
'Programming Language :: Python :: 3.10',

tox.ini

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py37-flake85,
43
py38-flake8-{v5,v6,latest},
54
py39-flake8-{v5,v6,latest},
65
py310-flake8-{v5,v6,latest},
@@ -11,13 +10,12 @@ envlist =
1110

1211
[gh-actions]
1312
python =
14-
3.7: py37
1513
3.8: py38
1614
3.9: py39
1715
3.10: py310
1816
3.11: py311
1917
3.12: py312, py312-flake8
20-
pypy-3.7: pypy3
18+
pypy-3.8: pypy3
2119

2220
[testenv]
2321
commands = python run_tests.py

0 commit comments

Comments
 (0)