From fc51cef95b11c867add2dd474b9499bd7209e3c6 Mon Sep 17 00:00:00 2001 From: bad boy Date: Mon, 1 Jun 2026 20:15:28 +0800 Subject: [PATCH] build: remove outdated arm64 test-skip from cibuildwheel config GitHub Actions now provides native arm64 macOS runners, so cross-compilation and test-skip are no longer necessary. arm64 wheels can be tested directly. Fixes #562 --- pyproject.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e533e488..84006466 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,9 +33,6 @@ skip = [ "*-win32", ] macos.archs = ["x86_64", "arm64"] -# When cross-compiling on Intel, it is not possible to test arm64 wheels. -# Warnings will be silenced with following CIBW_TEST_SKIP -test-skip = "*-macosx_arm64" - +# arm64 macOS wheels are now tested natively on GitHub Actions arm64 runners. before-test = "pip install pytest hypothesis" test-command = "pytest {project}/tests --import-mode=append"