From 672e1b5651e49262f3987b45e4166f95e2013c66 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Thu, 21 Nov 2024 16:30:59 +0000 Subject: [PATCH] Don't build 3.13 wheels on windows (#263) --- .github/workflows/wheels.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 1999c13..73c7d73 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -132,7 +132,9 @@ jobs: version: "0.4.x" - name: Install Python versions - run: uv python install 3.9 3.10 3.11 3.12 3.13 pypy3.10 + # Note: we exclude 3.13 from Windows, because it failed with a link error + # https://github.com/kylebarron/arro3/actions/runs/11957080778/job/33333367496 + run: uv python install 3.9 3.10 3.11 3.12 pypy3.10 - name: Build wheels uses: PyO3/maturin-action@v1