Skip to content

Commit

Permalink
BUILD: again
Browse files Browse the repository at this point in the history
  • Loading branch information
ColmTalbot committed Jun 21, 2023
1 parent 62ec94a commit a9b58b5
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,18 @@ jobs:
python -m pip install delocate
delocate-wheel -v -w wheelhouse wheel/cached_interpolate*.whl
rm -rf wheel/build/
cd wheelhouse
python -m pip install -v *
- name: Fix wheel (Windows)
if: matrix.os == 'windows-latest'
run: |
python -m pip install delvewheel
ls wheel
Get-ChildItem -Path wheel | ForEach-Object {
delvewheel repair -vv --wheel-dir wheelhouse $_
}
Move-Item wheel wheelhouse
ls
ls wheelhouse
- name: Remove temporary wheels and install
run: |
cd wheelhouse
python -m pip install -v *
Get-ChildItem -Path . | ForEach-Object {
delvewheel repair -vv --wheel-dir . $_
python -m pip install -v $_
}
- name: Run import tests
run: |
cd ../
Expand Down

0 comments on commit a9b58b5

Please sign in to comment.