From a61741c08ba161634881059c0f70377ff2b5b801 Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Thu, 28 Dec 2023 16:15:42 -0500 Subject: [PATCH] fix(ci): build less stuff --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 073f8e30a..e14b2b8a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,10 +45,13 @@ build = [ "cp311-*", "cp312-*", ] -# Build only universal wheels for Mac where possible +# Build only universal wheels for Mac where possible, and skip 32-bit +# builds to avoid building a gigabyte of stuff all the time skip = [ "cp*-macosx_x86_64", "cp*-macosx_arm64", + "*_i686", + "*-win32", ] [tool.cibuildwheel.macos]