From d01840beb732fccfb205b3a2a02f70b4aac2c628 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Mon, 14 Oct 2024 10:52:53 +0000 Subject: [PATCH 1/2] feat: support python 3.13 --- .github/workflows/ci.yml | 1 + .gitpod.yml | 2 +- pyproject.toml | 1 + tox.ini | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9674bc..61f34c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - name: Check out repository uses: actions/checkout@v4 diff --git a/.gitpod.yml b/.gitpod.yml index 99df4bf..3a5f50a 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -7,7 +7,7 @@ tasks: # Upgrade pyenv itself pyenv update - export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12" + export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12 3.13" # Install all supported Python versions for py in $PY_VERSIONS; diff --git a/pyproject.toml b/pyproject.toml index 7635b6a..e83c362 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Typing :: Typed" diff --git a/tox.ini b/tox.ini index 4441a74..717538a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{39, 310, 311, 312} + py{39, 310, 311, 312, 313} pypy{39, 310} pep8 packaging From 4c97c08bf9e0f352e21911baf936b6aa87d1a1ad Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Tue, 15 Oct 2024 10:48:48 -0400 Subject: [PATCH 2/2] Update .gitpod.yml --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 3a5f50a..d11f037 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -7,7 +7,7 @@ tasks: # Upgrade pyenv itself pyenv update - export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12 3.13" + export PY_VERSIONS="3.9 3.10 3.11 3.12 3.13" # Install all supported Python versions for py in $PY_VERSIONS;