From 049fcc4e49174541e965b29ab9882dac7ef5f7a3 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Sat, 23 Nov 2024 17:34:08 -0800 Subject: [PATCH] add Python 3.12 to CI and published builds --- .github/workflows/dists.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dists.yml b/.github/workflows/dists.yml index 9131a03..fe51a0f 100644 --- a/.github/workflows/dists.yml +++ b/.github/workflows/dists.yml @@ -44,7 +44,7 @@ jobs: target: ${{ matrix.target }} manylinux: ${{ matrix.manylinux || 'auto' }} # Keep in sync with tests.yml - args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12' + args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12 3.13' rust-toolchain: stable docker-options: -e CI diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0d8e571..d13d1c2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: # Keep in sync with: # - dists.yml # - the c_impl tests below - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] rust-toolchain: [stable, beta, nightly] platform: [ { os: "ubuntu-latest", python-architecture: "x64", rust-target: "x86_64-unknown-linux-gnu", name: "ubuntu-x64" }, @@ -61,7 +61,7 @@ jobs: # Keep in sync with: # - dists.yml # - the rust_impl tests above - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] platform: [ # This list should be kept in sync with dists.yml. { os: "ubuntu-latest", python-architecture: "x64", name: "ubuntu-x64" },