Skip to content

Commit

Permalink
fix PyPy attempt 1
Browse files Browse the repository at this point in the history
  • Loading branch information
James-E-A committed Jan 26, 2024
1 parent f8be5a8 commit 98b1e09
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/bdist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
cibw-py [cp37, pp37]
os: [ubuntu-20.04, windows-2019]
include:
- os: ubuntu-20.04
cibw-build: cp37-manylinux_x86_64
cibw-host: manylinux_x86_64
- os: windows-2019
cibw-build: cp37-win_amd64
- os: windows-2019
cibw-build: pp37-win_amd64
cibw-host: win_amd64

steps:
- uses: actions/checkout@v4
Expand All @@ -29,7 +28,7 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: ${{ matrix.cibw-build }}
CIBW_BUILD: ${{ matrix.cibw-py }}-${{ matrix.cibw-host }}
# https://cibuildwheel.readthedocs.io/en/stable/options/#:~:text=cibuildwheel%20doesn%27t%20yet%20ship%20a%20default%20repair%20command%20for%20Windows%2E
CIBW_BEFORE_BUILD_WINDOWS: "pip install delvewheel"
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
Expand Down

0 comments on commit 98b1e09

Please sign in to comment.