From 8e2036d36164cd2ae8923250be178aee7f8dabed Mon Sep 17 00:00:00 2001 From: OMOTO Tsukasa Date: Mon, 7 Oct 2024 18:22:27 +0900 Subject: [PATCH] Test with Python 3.12 and 3.13-dev (#105) --- .github/workflows/main.yml | 5 +++-- setup.py | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aa39cc0..d74155a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,8 +19,9 @@ jobs: - "3.9" - "3.10" - "3.11" - # https://github.com/actions/setup-python/blob/v3.0.0/src/find-python.ts#L112-L120 - - "3.12-dev" + - "3.12" + # https://github.com/actions/setup-python/blob/v4.7.1/src/find-python.ts#L162-L166 + - "3.13-dev" steps: - name: Checkout diff --git a/setup.py b/setup.py index 3695a4b..b6e0755 100644 --- a/setup.py +++ b/setup.py @@ -44,5 +44,6 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], )