From 83e43da556735e214c788afc412fdad549e23b15 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Thu, 26 Jan 2023 18:07:22 -0500 Subject: [PATCH 1/2] BLD: Drop universal2 wheels Numpy hasn't provided them anymore for a while, so let's drop them as well to cut down on compilation time and save space on PyPI. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b8a2cb89ff3a0..f58186e216b5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,7 +147,7 @@ test-requires = "hypothesis>=6.34.2 pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-asy test-command = "python {project}/ci/test_wheels.py" [tool.cibuildwheel.macos] -archs = "x86_64 universal2" +archs = "x86_64 arm64" test-skip = "*_arm64 *_universal2:arm64" [tool.cibuildwheel.windows] From adacf7c6ad4138adc7b6c3becf65b351fb6bf96b Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Fri, 27 Jan 2023 07:31:52 -0500 Subject: [PATCH 2/2] remove straggler --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f58186e216b5c..726ec1a137861 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -148,7 +148,7 @@ test-command = "python {project}/ci/test_wheels.py" [tool.cibuildwheel.macos] archs = "x86_64 arm64" -test-skip = "*_arm64 *_universal2:arm64" +test-skip = "*_arm64" [tool.cibuildwheel.windows] repair-wheel-command = "python ci/fix_wheels.py {wheel} {dest_dir}"