Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed May 21, 2024
1 parent e9e160c commit 1891a4a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
- os: ubuntu-22.04
linux_archs: "i686"
skip: "pp* *37* *38*"
skip: "pp*"

name: ${{ matrix.os }} ${{ matrix.architecture }} ${{ matrix.linux_archs }}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_BEFORE_ALL: "pip install cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
Expand Down Expand Up @@ -124,12 +124,12 @@ jobs:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
- os: ubuntu-22.04
linux_archs: "x86_64"
skip: "pp* *37* *38*"
skip: "pp*"

name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_BEFORE_ALL: "pip install cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
Expand Down Expand Up @@ -178,12 +178,12 @@ jobs:
include:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
- os: windows-latest
skip: "*2*win* *win32 pp* *37* *38*"
skip: "*2*win* *win32 pp*"

name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_BEFORE_ALL: "pip install cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
Expand Down

0 comments on commit 1891a4a

Please sign in to comment.