We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5df17d commit 5c1d607Copy full SHA for 5c1d607
4 files changed
.github/workflows/publication.yaml
@@ -9,7 +9,7 @@ jobs:
9
- uses: actions/checkout@v6
10
- uses: actions/setup-python@v6
11
with:
12
- python-version: '3.8'
+ python-version: "3.9"
13
- run: python -m pip install --upgrade tox-gh-actions
14
- env:
15
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
.github/workflows/validation.yaml
@@ -5,7 +5,7 @@ jobs:
5
runs-on: ubuntu-latest
6
strategy:
7
matrix:
8
- python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
pyproject.toml
@@ -19,7 +19,6 @@ classifiers = [
19
"Operating System :: OS Independent",
20
"Programming Language :: Python",
21
"Programming Language :: Python :: 3",
22
- "Programming Language :: Python :: 3.8",
23
"Programming Language :: Python :: 3.9",
24
"Programming Language :: Python :: 3.10",
25
"Programming Language :: Python :: 3.11",
@@ -29,7 +28,7 @@ classifiers = [
29
28
"Programming Language :: Python :: Implementation :: CPython",
30
"Topic :: Software Development :: Testing",
31
]
32
-requires-python = ">=3.8"
+requires-python = ">=3.9"
33
dependencies = [
34
"filelock>=3.0",
35
"mypy>=1.0",
tox.ini
@@ -3,7 +3,6 @@
3
minversion = 4.4
4
isolated_build = true
envlist =
- py38-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{2.0, 2.x, 3.0, 3.x}
py39-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{2.0, 2.x, 3.0, 3.x}
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}
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 =
16
[gh-actions]
17
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}
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}
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}
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