From 48cf74714ad2cc075d926ccfe710212817b8b7d4 Mon Sep 17 00:00:00 2001 From: Adrian Seyboldt Date: Tue, 18 Feb 2025 13:37:09 +0100 Subject: [PATCH] ci: skip python 3.13 for now --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e62176..98ed8a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: 3.10 3.11 3.12 - 3.13 + # 3.13 # Leave out 3.13 on aarch due to an issue in pyo3/rust-numpy 0.23.4 - name: Build wheels uses: PyO3/maturin-action@v1 @@ -51,7 +51,8 @@ jobs: if: ${{ matrix.platform.target == 'x86_64' }} with: target: ${{ matrix.platform.target }} - args: --release --out dist --interpreter 3.10 3.11 3.12 3.13 --zig + # No py3.13 yet... + args: --release --out dist --interpreter 3.10 3.11 3.12 --zig sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} manylinux: auto before-script-linux: | @@ -230,7 +231,7 @@ jobs: 3.10 3.11 3.12 - 3.13 + # 3.13 - name: Install uv uses: astral-sh/setup-uv@v5 - uses: maxim-lobanov/setup-xcode@v1