From 1c60dafcb2f6ecfb50fcd8ead3af0ae035060173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Sat, 19 Oct 2024 08:56:01 -0600 Subject: [PATCH 1/2] Added support for Python 3.13 --- .github/workflows/test.yml | 3 +++ pyproject.toml | 1 + tox.ini | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ca33e3a1..8cb2612d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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" diff --git a/pyproject.toml b/pyproject.toml index 341d1a0b..70cb2b00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ diff --git a/tox.ini b/tox.ini index f5831737..d6af92cb 100644 --- a/tox.ini +++ b/tox.ini @@ -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 From 3bf62e0e22fa94fb07eeee726af07c4368633e81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Sat, 19 Oct 2024 08:57:03 -0600 Subject: [PATCH 2/2] Added changelog entry --- changelog/1142.feature.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/1142.feature.rst diff --git a/changelog/1142.feature.rst b/changelog/1142.feature.rst new file mode 100644 index 00000000..fa902a30 --- /dev/null +++ b/changelog/1142.feature.rst @@ -0,0 +1 @@ +Added support for Python 3.13.