From 61eeac93cecbf7f465e10ec5353d4b91866027ac Mon Sep 17 00:00:00 2001 From: Yuta Kasai Date: Mon, 10 Mar 2025 23:11:25 +0900 Subject: [PATCH] NO-ISSUE Support Python 3.13 NO-ISSUE a NO-ISSUE test NO-ISSUE ok --- .github/workflows/auto-testing.yml | 2 ++ README.rst | 1 + setup.py | 1 + tox.ini | 9 ++++++++- 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-testing.yml b/.github/workflows/auto-testing.yml index 59808e6e..5d58cbe0 100644 --- a/.github/workflows/auto-testing.yml +++ b/.github/workflows/auto-testing.yml @@ -18,6 +18,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' steps: - uses: actions/checkout@v4 with: @@ -50,6 +51,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' steps: - uses: actions/checkout@v4 with: diff --git a/README.rst b/README.rst index 6df10a89..2d01892b 100644 --- a/README.rst +++ b/README.rst @@ -412,6 +412,7 @@ Test by using tox. We test against the following versions. - 3.10 - 3.11 - 3.12 +- 3.13 To run all tests and to run ``flake8`` against all versions, use: diff --git a/setup.py b/setup.py index c3cfb6dd..2ee5b9a2 100644 --- a/setup.py +++ b/setup.py @@ -204,6 +204,7 @@ def run(self): "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development" ] ) diff --git a/tox.ini b/tox.ini index dadc754b..9b4ece98 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,12 @@ [tox] -envlist = py3.9, py3.10, py3.11, py3.12, py3-flake8-src, py3-flake8-other +envlist = + py3.9, + py3.10, + py3.11, + py3.12, + py3.13, + py3-flake8-src, + py3-flake8-other [testenv] deps =