From b591908f0d77b0fc06b8453a8d71775613802895 Mon Sep 17 00:00:00 2001 From: Naoyuki Sano Date: Mon, 27 Oct 2025 03:40:56 +0900 Subject: [PATCH 1/2] Add support for Python 3.13 and 3.14 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 75f5426..e473843 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,8 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Libraries', From e0c4593af7fa04b300ae2ce2096a00474cfbab7e Mon Sep 17 00:00:00 2001 From: Naoyuki Sano Date: Mon, 27 Oct 2025 03:42:46 +0900 Subject: [PATCH 2/2] Add Python versions 3.13 and 3.14 to workflow --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7ec5232..7ec6932 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -39,7 +39,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12" ] + python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ] steps: - uses: actions/checkout@v4