From 3efb5883358eac954143312305ef4f638b08566c Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 28 Jun 2025 21:28:27 +1000 Subject: [PATCH] Do not install NumPy on Windows x86 --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5b7ce2d09..582d742b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -148,6 +148,10 @@ environment.PATH = "$(pwd)/build/deps/iphoneos/bin:$PATH" select = "*_iphonesimulator" environment.PATH = "$(pwd)/build/deps/iphonesimulator/bin:$PATH" +[[tool.cibuildwheel.overrides]] +select = "*-win32" +test-requires = [ ] + [tool.black] exclude = "wheels/multibuild"