Skip to content

Commit

Permalink
Leap of faith
Browse files Browse the repository at this point in the history
cibuildwheel ALLEGEDLY will not build a billion different versions
if it "detects" ABI3

Now that ABI3 is implemented, let's kick the tires on that...
  • Loading branch information
James-E-A committed Jan 26, 2024
1 parent 98b1e09 commit d60f1ba
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/bdist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,11 @@ on: [push]

jobs:
build_wheels:
name: Build ${{ matrix.cibw-build }} wheel on ${{ matrix.os }}
name: bdist_wheel on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
cibw-py [cp37, pp37]
os: [ubuntu-20.04, windows-2019]
include:
- os: ubuntu-20.04
cibw-host: manylinux_x86_64
- os: windows-2019
cibw-host: win_amd64

steps:
- uses: actions/checkout@v4
Expand All @@ -28,7 +22,6 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
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 d60f1ba

Please sign in to comment.