Skip to content

Commit f37cdda

Browse files
committed
Drop EOL Python 3.8 support
1 parent c3d7b77 commit f37cdda

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
tox_env:
37-
- "py38-pytestmin"
38-
- "py38-pytestlatest"
37+
- "py39-pytestmin"
3938
- "py39-pytestlatest"
4039
- "py310-pytestlatest"
4140
- "py311-pytestlatest"
@@ -47,10 +46,8 @@ jobs:
4746

4847
os: [ubuntu-latest, windows-latest]
4948
include:
50-
- tox_env: "py38-pytestmin"
51-
python: "3.8"
52-
- tox_env: "py38-pytestlatest"
53-
python: "3.8"
49+
- tox_env: "py39-pytestmin"
50+
python: "3.9"
5451
- tox_env: "py39-pytestlatest"
5552
python: "3.9"
5653
- tox_env: "py310-pytestlatest"

changelog/XXX.removal.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Dropped support for EOL Python 3.8.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,13 @@ classifiers = [
2525
"Programming Language :: Python",
2626
"Programming Language :: Python :: 3",
2727
"Programming Language :: Python :: 3 :: Only",
28-
"Programming Language :: Python :: 3.8",
2928
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",
3231
"Programming Language :: Python :: 3.12",
3332
"Programming Language :: Python :: 3.13",
3433
]
35-
requires-python = ">=3.8"
34+
requires-python = ">=3.9"
3635
dependencies = [
3736
"execnet>=2.1",
3837
"pytest>=7.0.0",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
linting
4-
py{38,39,310,311,312,313}-pytestlatest
4+
py{39,310,311,312,313}-pytestlatest
55
py310-pytestmain
66
py310-psutil
77
py310-setproctitle

0 commit comments

Comments
 (0)