From 139918de94b448a2ac81028e0cbd319a090685f8 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 29 Nov 2024 22:38:39 -0500 Subject: [PATCH 1/2] chore: mark 3.13 as explicitly supported Signed-off-by: William Woodruff --- .github/workflows/main.yml | 1 + pyproject.toml | 6 ++---- tox.ini | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aae12eb8..5d07d193 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,6 +43,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" platform: - ubuntu-latest - macos-latest diff --git a/pyproject.toml b/pyproject.toml index 24e50529..de5da1e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", ] requires-python = ">=3.8" @@ -66,10 +67,7 @@ keyring = ["keyring >= 15.1"] twine = "twine.__main__:main" [tool.setuptools] -packages = [ - "twine", - "twine.commands", -] +packages = ["twine", "twine.commands"] include-package-data = true license-files = ["LICENSE"] diff --git a/tox.ini b/tox.ini index 5a85ef42..e5c71aab 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.8 -envlist = lint,types,py{38,39,310,311,312},integration,docs +envlist = lint,types,py{38,39,310,311,312,313},integration,docs isolated_build = True [testenv] From e7dc062a68a5bd48c16d54569462d4c809c9ac67 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 29 Nov 2024 22:41:40 -0500 Subject: [PATCH 2/2] changelog: record #1184 Signed-off-by: William Woodruff --- changelog/1184.misc.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/1184.misc.rst diff --git a/changelog/1184.misc.rst b/changelog/1184.misc.rst new file mode 100644 index 00000000..94accf90 --- /dev/null +++ b/changelog/1184.misc.rst @@ -0,0 +1 @@ +Python 3.13 is now explicitly supported.