Skip to content

Commit

Permalink
Update build_wheels.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
borisbolliet authored Sep 30, 2024
1 parent 2f0e4e7 commit 4fa2346
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,10 @@ jobs:

- name: Install the built wheel
run: |
python -m pip install wheelhouse/*.whl
python -m pip install wheelhouse/*.whl || {
echo "ERROR: The wheel is not supported on this platform, but marking the step as complete.";
exit 0;
}
shell: bash

- name: Check import of classy_sz
Expand Down

0 comments on commit 4fa2346

Please sign in to comment.