From b625f16afd24ee1e9dc4b2f155d4991ea6665b21 Mon Sep 17 00:00:00 2001 From: HansBug Date: Sun, 29 Oct 2023 18:03:34 +0800 Subject: [PATCH] dev(hansbug): add support for Python3.12 and PyPy3.10 --- .github/workflows/test.yml | 2 ++ setup.py | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14409f8bba0..43b881d84ff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,9 +20,11 @@ jobs: - '3.9' - '3.10' - '3.11' + - '3.12' - 'pypy-3.7' - 'pypy-3.8' - 'pypy-3.9' + - 'pypy-3.10' steps: - name: Get system version for Linux diff --git a/setup.py b/setup.py index 18e8b58424b..b82651f16ad 100644 --- a/setup.py +++ b/setup.py @@ -61,6 +61,7 @@ def _load_req(file: str): 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: Implementation :: PyPy' ], )