From 904dd625796a25a98ac6ae6eb8164b881d9d824b Mon Sep 17 00:00:00 2001 From: pualcmd <142505049+pualcmd@users.noreply.github.com> Date: Sun, 20 Jul 2025 17:52:23 +0800 Subject: [PATCH 1/2] [docs] upgrade Python version to 3.8 ~ 3.13 everywhere #384 --- .github/workflows/build.yml | 2 +- pyproject.toml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe0edce..fcba4c6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8","3.9", "3.10", "3.11", "3.12", "3.13"] os: [ubuntu-latest, macOS-latest, windows-latest] steps: diff --git a/pyproject.toml b/pyproject.toml index c2e8845..7d36f2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,16 +19,15 @@ keywords = [ "permission", ] dynamic = ["dependencies"] -requires-python = ">=3.3" +requires-python = ">=3.8,<3.13" license = {text = "Apache 2.0"} classifiers = [ - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ] From 0f30d078e816dc9813cc262768302f9add0b7c1e Mon Sep 17 00:00:00 2001 From: pualcmd <142505049+pualcmd@users.noreply.github.com> Date: Sun, 20 Jul 2025 18:29:41 +0800 Subject: [PATCH 2/2] [docs] upgrade Python version to 3.8 ~ 3.13 everywhere #384 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7d36f2a..f8dd683 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ keywords = [ "permission", ] dynamic = ["dependencies"] -requires-python = ">=3.8,<3.13" +requires-python = ">=3.8,<=3.13" license = {text = "Apache 2.0"} classifiers = [ "Programming Language :: Python :: 3.8",