From 02e7cf1f1aafe3ee0d631abd73b275524d4c0a9c Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Thu, 10 Sep 2026 15:46:54 -0400 Subject: [PATCH] ci: Skip Python 3.15 for Pyodide builds It seems Pyodide no longer ships its own wheels for Python 3.15, presumably because PyPI now supports WASM wheels and it's expected for upstreams to release them. Unfortunately, our upstreams (at least contourpy and kiwisolver) don't yet have those wheels, so our wasm build fails and we haven't been uploading nightlies for the past few days. --- .github/workflows/wasm.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index d6bfe7bf8845..4400d36f76ae 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -47,6 +47,7 @@ jobs: - name: Build wheels for wasm uses: pypa/cibuildwheel@1828c10ab37f080699c7b81cea34097c684a7074 # v4.2.0 env: + CIBW_SKIP: "cp315-*" CIBW_PLATFORM: "pyodide" CIBW_TEST_COMMAND: "true"