Drop EOL Python 3.8 support

This commit is contained in:
Bruno Oliveira 2024-12-07 08:43:37 -03:00
parent c3d7b7784a
commit 6dc8c2a66d
4 changed files with 6 additions and 9 deletions

View File

@ -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"

View File

@ -0,0 +1 @@
Dropped support for EOL Python 3.8.

View File

@ -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",

View File

@ -1,7 +1,7 @@
[tox] [tox]
envlist = envlist =
linting linting
py{38,39,310,311,312,313}-pytestlatest py{39,310,311,312,313}-pytestlatest
py310-pytestmain py310-pytestmain
py310-psutil py310-psutil
py310-setproctitle py310-setproctitle