From 421b2d64f98b900c71af2a7d2762221bf7df8812 Mon Sep 17 00:00:00 2001 From: ringsaturn Date: Tue, 10 Sep 2024 16:22:30 +0800 Subject: [PATCH] build Python 3.13 --- .github/workflows/CI.yml | 14 +++++++------- pyproject.toml | 1 + 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2b8e3d5..df741b4 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -26,7 +26,7 @@ jobs: manylinux: auto command: build sccache: true - args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 + args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13 - name: Upload wheels uses: actions/upload-artifact@v4 with: @@ -47,7 +47,7 @@ jobs: target: aarch64-unknown-linux-gnu command: build sccache: true - args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 + args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13 - name: Upload wheels uses: actions/upload-artifact@v4 with: @@ -68,7 +68,7 @@ jobs: target: armv7 command: build sccache: true - args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 + args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13 container: messense/manylinux_2_24-cross:armv7 - name: Upload wheels uses: actions/upload-artifact@v4 @@ -89,7 +89,7 @@ jobs: target: x86_64 command: build sccache: true - args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 + args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13 manylinux: musllinux_1_1 - name: Upload wheels uses: actions/upload-artifact@v4 @@ -110,7 +110,7 @@ jobs: target: aarch64 command: build sccache: true - args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 + args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13 manylinux: musllinux_1_1 - name: Upload wheels uses: actions/upload-artifact@v4 @@ -130,7 +130,7 @@ jobs: with: command: build sccache: true - args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 + args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13 - name: Upload wheels uses: actions/upload-artifact@v4 with: @@ -149,7 +149,7 @@ jobs: with: command: build sccache: true - args: --release -o dist --target universal2-apple-darwin -i 3.8 3.9 3.10 3.11 3.12 + args: --release -o dist --target universal2-apple-darwin -i 3.8 3.9 3.10 3.11 3.12 3.13 - name: Upload wheels uses: actions/upload-artifact@v4 with: diff --git a/pyproject.toml b/pyproject.toml index 494cf43..ed21d3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dependencies = [] license = "MIT"