Skip to content

Commit 85e208c

Browse files
committed
chore: remove support for eol'ed python
Remove python 3.7 and 3.8 from support. They are EOL'ed on 2023-06-27 and 2024-10-07 respectively.
1 parent 3547f8a commit 85e208c

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-22.04 # 22.04 has python 3.7, see https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
'Intended Audience :: Developers',
4040
'Natural Language :: English',
4141
'Programming Language :: Python :: 3',
42-
'Programming Language :: Python :: 3.7',
43-
'Programming Language :: Python :: 3.8',
4442
'Programming Language :: Python :: 3.9',
4543
'Programming Language :: Python :: 3.10',
4644
'Programming Language :: Python :: 3.11',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310, py311, py312, py313, flake8
2+
envlist = py39, py310, py311, py312, py313, flake8
33

44
[testenv:flake8]
55
basepython=python

0 commit comments

Comments
 (0)