Drop EOL Python 3.8 support
This commit is contained in:
parent
c3d7b7784a
commit
6dc8c2a66d
|
@ -34,8 +34,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
tox_env:
|
tox_env:
|
||||||
- "py38-pytestmin"
|
- "py39-pytestmin"
|
||||||
- "py38-pytestlatest"
|
|
||||||
- "py39-pytestlatest"
|
- "py39-pytestlatest"
|
||||||
- "py310-pytestlatest"
|
- "py310-pytestlatest"
|
||||||
- "py311-pytestlatest"
|
- "py311-pytestlatest"
|
||||||
|
@ -47,10 +46,8 @@ jobs:
|
||||||
|
|
||||||
os: [ubuntu-latest, windows-latest]
|
os: [ubuntu-latest, windows-latest]
|
||||||
include:
|
include:
|
||||||
- tox_env: "py38-pytestmin"
|
- tox_env: "py39-pytestmin"
|
||||||
python: "3.8"
|
python: "3.9"
|
||||||
- tox_env: "py38-pytestlatest"
|
|
||||||
python: "3.8"
|
|
||||||
- tox_env: "py39-pytestlatest"
|
- tox_env: "py39-pytestlatest"
|
||||||
python: "3.9"
|
python: "3.9"
|
||||||
- tox_env: "py310-pytestlatest"
|
- tox_env: "py310-pytestlatest"
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Dropped support for EOL Python 3.8.
|
|
@ -25,14 +25,13 @@ classifiers = [
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3 :: Only",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
"Programming Language :: Python :: 3.8",
|
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.12",
|
||||||
"Programming Language :: Python :: 3.13",
|
"Programming Language :: Python :: 3.13",
|
||||||
]
|
]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"execnet>=2.1",
|
"execnet>=2.1",
|
||||||
"pytest>=7.0.0",
|
"pytest>=7.0.0",
|
||||||
|
|
Loading…
Reference in New Issue