diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index ba47d31..d6d6f61 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -64,8 +64,8 @@ jobs: CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 # Build x86 and Universal on Mac CIBW_ARCHS_MACOS: x86_64 universal2 - # skip PyPy (no manylinux2014), 32-bit linux, musl linux, and other architectures - CIBW_SKIP: "pp* cp*manylinux_i686 cp*manylinux_aarch64 cp*manylinux_ppc64le cp*manylinux_s390x *-musllinux*" + # skip PyPy (no manylinux2014), 32-bit linux and win32, musl linux, and other architectures + CIBW_SKIP: "pp* cp*win32 cp*manylinux_i686 cp*manylinux_aarch64 cp*manylinux_ppc64le cp*manylinux_s390x *-musllinux*" # Force static link of libxml2 CIBW_ENVIRONMENT: "FORCE_BUILD_LIBXML2=ON" CIBW_TEST_REQUIRES: "pytest"