From b965a93f06755702484b093b61377d5c4a9bb6c5 Mon Sep 17 00:00:00 2001 From: Avin Zarlez <4392252+AvinZarlez@users.noreply.github.com> Date: Thu, 7 May 2026 12:29:24 -0700 Subject: [PATCH] Remove test-skip comment for macOS arm64 No longer skipping tests for arm64 builds, since GitHub action runners for macos latest are Arm64 based. --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 78502774..ce9cf3cd 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" before-test = "pip install pytest hypothesis" test-command = "pytest {project}/tests --import-mode=append"