Skip to content

Commit 5c1d607

Browse files
committed
Drop support for Python 3.8
1 parent b5df17d commit 5c1d607

4 files changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/publication.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v6
1010
- uses: actions/setup-python@v6
1111
with:
12-
python-version: '3.8'
12+
python-version: "3.9"
1313
- run: python -m pip install --upgrade tox-gh-actions
1414
- env:
1515
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

.github/workflows/validation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
8+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
99
steps:
1010
- uses: actions/checkout@v6
1111
- uses: actions/setup-python@v6

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ classifiers = [
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",
@@ -29,7 +28,7 @@ classifiers = [
2928
"Programming Language :: Python :: Implementation :: CPython",
3029
"Topic :: Software Development :: Testing",
3130
]
32-
requires-python = ">=3.8"
31+
requires-python = ">=3.9"
3332
dependencies = [
3433
"filelock>=3.0",
3534
"mypy>=1.0",

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
minversion = 4.4
44
isolated_build = true
55
envlist =
6-
py38-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{2.0, 2.x, 3.0, 3.x}
76
py39-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{2.0, 2.x, 3.0, 3.x}
87
py310-pytest{7.0, 7.x, 8.0, 8.x, 9.0, 9.x}-mypy{1.0, 1.x, 2.0, 2.x}-xdist{2.0, 2.x, 3.0, 3.x}
98
py311-pytest{7.0, 7.x, 8.0, 8.x, 9.0, 9.x}-mypy{1.0, 1.x, 2.0, 2.x}-xdist{2.0, 2.x, 3.0, 3.x}
@@ -15,7 +14,6 @@ envlist =
1514

1615
[gh-actions]
1716
python =
18-
3.8: py38-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{2.0, 2.x, 3.0, 3.x}
1917
3.9: py39-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{2.0, 2.x, 3.0, 3.x}
2018
3.10: py310-pytest{7.0, 7.x, 8.0, 8.x, 9.0, 9.x}-mypy{1.0, 1.x, 2.0, 2.x}-xdist{2.0, 2.x, 3.0, 3.x}
2119
3.11: py311-pytest{7.0, 7.x, 8.0, 8.x, 9.0, 9.x}-mypy{1.0, 1.x, 2.0, 2.x}-xdist{2.0, 2.x, 3.0, 3.x}

0 commit comments

Comments
 (0)