Skip to content

Commit

Permalink
build.yaml: cibuildwheel -> 2.3.0 (cvxgrp#47)
Browse files Browse the repository at this point in the history
* build.yaml: cibuildwheel -> 2.3.0

cibuildwheel 2.3.0 defaults to manylinux2014, which might help with the failing ubuntu deploy (which fails b/c scipy 1.7.3 does not have a suitable manylinux2010 wheel)

* skip musllinux builds

wheels aren't provided by dependencies like scipy, building takes too long
  • Loading branch information
akshayka authored Dec 3, 2021
1 parent 29fd7dd commit 2a271c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ jobs:
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==1.8.0
python -m pip install cibuildwheel==2.3.0
- name: Build wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: "cp37* cp38* cp39*"
CIBW_SKIP: "*musllinux*"

- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 2a271c7

Please sign in to comment.