From aee85681c3399cd177b91af1d392aa291520c670 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Wed, 3 Jun 2020 15:24:34 +0100 Subject: [PATCH] Revert "try to skip win32 builds, see if 64-bit only passes" This reverts commit 389a13654619714dc9c90d692ca5fbf32b86825d. --- .github/workflows/build_wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 503ce6a..2ab2c3e 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -50,8 +50,8 @@ jobs: CIBW_BUILD: "cp36-*" # build using the manylinux1 image to ensure manylinux1 wheels are produced CIBW_MANYLINUX_X86_64_IMAGE: manylinux1 - # skip PyPy (no manylinux1), 32-bit linux and win, and other architectures - CIBW_SKIP: "pp* cp*manylinux_i686 cp*manylinux_aarch64 cp*manylinux_ppc64le cp*manylinux_s390x cp*win32" + # skip PyPy (no manylinux1), 32-bit linux, and other architectures + CIBW_SKIP: "pp* cp*manylinux_i686 cp*manylinux_aarch64 cp*manylinux_ppc64le cp*manylinux_s390x" CIBW_TEST_REQUIRES: "pytest" # run test suite with pytest, no coverage # TODO: run with coverage and publish to codecov.io