Skip to content

Commit

Permalink
Don't build wheels for i686, since numpy doesn't seem to have wheels …
Browse files Browse the repository at this point in the history
…for them anymore
  • Loading branch information
rmjarvis committed Oct 16, 2023
1 parent a11dfb4 commit 8d50967
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 8d50967

Please sign in to comment.