From 8d5096788c5e0f320b218565c7a5e773d6396ca8 Mon Sep 17 00:00:00 2001 From: Mike Jarvis Date: Mon, 16 Oct 2023 08:43:46 -0400 Subject: [PATCH] Don't build wheels for i686, since numpy doesn't seem to have wheels for them anymore --- .github/workflows/wheels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9302a8c5fc..39f225cc7d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -19,7 +19,7 @@ jobs: uses: pypa/cibuildwheel@v2.16.2 env: CIBW_BUILD: "*manylinux*" - CIBW_SKIP: cp36* cp37* pp* + CIBW_SKIP: cp36* pp* cp*1686 # I think yum might always work here. But leave all options available. CIBW_BEFORE_ALL_LINUX: yum install -y fftw-devel || apt-get install libfftw3-dev || apk add --upgrade fftw-dev @@ -39,7 +39,7 @@ jobs: uses: pypa/cibuildwheel@v2.16.2 env: CIBW_BUILD: "*musllinux*" - CIBW_SKIP: cp36* pp* + CIBW_SKIP: cp36* pp* cp*i686 # I think musl always uses apk, but keep all options available. CIBW_BEFORE_ALL: apk add --upgrade fftw-dev || apt-get install libfftw3-dev || yum install -y fftw-devel @@ -59,7 +59,7 @@ jobs: uses: pypa/cibuildwheel@v2.16.2 env: CIBW_BUILD: "*macosx*" - CIBW_SKIP: cp36* pp* + CIBW_SKIP: cp36* pp* cp*i686 CIBW_BEFORE_ALL_MACOS: brew install fftw || true - uses: actions/upload-artifact@v3