From ed59379799a6006e28a697e28145465f606a42d5 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Ruel Date: Fri, 9 Aug 2024 14:04:43 -0400 Subject: [PATCH] ci: skipping cp39-win32 build because wheel testing fails --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e812490..89fc743 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*", "cp{38,39,310,311,312}-manylinux_i686", "cp38-macosx_arm64", "*musllinux*", "*ppc64le", "*s390x"] +test-skip = ["*universal2:arm64", "pp*", "cp{38,39,310,311,312}-manylinux_i686", "cp38-macosx_arm64", "*musllinux*", "*ppc64le", "*s390x", "cp39-win32"] # Setuptools bug causes collision between pypy and cpython artifacts before-build = "rm -rf {project}/build"