Skip to content

Commit 0308d09

Browse files
authored
Drop support for Python 3.8 (#238)
Python 3.8 reached the end of its supported life on 2024-10-07. https://devguide.python.org/versions/
1 parent 87009a8 commit 0308d09

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.8, 3.9, "3.10", "3.11", "3.12", "3.13", pypy-3.8]
16+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13", pypy-3.9]
1717
steps:
1818
- uses: actions/checkout@v4
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.8',
6362
'Programming Language :: Python :: 3.9',
6463
'Programming Language :: Python :: 3.10',
6564
'Programming Language :: Python :: 3.11',

tox.ini

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

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

2220
[testenv]
2321
commands = python run_tests.py

0 commit comments

Comments
 (0)