From 86b4de74d9053c4b6572fe764225ae6dc7dc27a8 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Ruel Date: Tue, 28 May 2024 14:14:45 -0400 Subject: [PATCH] ci: silence cibuildwheel warning as documented here https://github.com/pypa/cibuildwheel/pull/1169 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6ba69bc..0e0b307 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ tag_format = "v$version" [tool.cibuildwheel] test-command = "pytest {project}/tests" test-extras = ["test"] -test-skip = ["*universal2:arm64", "pp*-win_amd64"] +test-skip = ["*universal2:arm64", "pp*-win_amd64", "cp38-macosx_*:arm64"] # Setuptools bug causes collision between pypy and cpython artifacts before-build = "rm -rf {project}/build"