Added support for Python 3.13

This commit is contained in:
Edgar Ramírez-Mondragón 2024-10-19 08:56:01 -06:00
parent a65df239f4
commit 1c60dafcb2
No known key found for this signature in database
GPG Key ID: 74C40D09C7B42099
3 changed files with 5 additions and 1 deletions

View File

@ -41,6 +41,7 @@ jobs:
- "py311-pytestlatest"
- "py311-pytestmain"
- "py312-pytestlatest"
- "py313-pytestlatest"
- "py310-psutil"
- "py310-setproctitle"
@ -60,6 +61,8 @@ jobs:
python: "3.11"
- tox_env: "py312-pytestlatest"
python: "3.12"
- tox_env: "py313-pytestlatest"
python: "3.13"
- tox_env: "py310-psutil"
python: "3.10"
- tox_env: "py310-setproctitle"

View File

@ -30,6 +30,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8"
dependencies = [

View File

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