Skip to content

Commit

Permalink
Don't try to install cross-compiled wheels.
Browse files Browse the repository at this point in the history
  • Loading branch information
kylc committed Sep 22, 2024
1 parent db24b03 commit 9dfef2b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@ jobs:
include:
- os: ubuntu-latest
target: x86_64
cross: false
- os: ubuntu-latest
target: aarch64
cross: true
- os: macos-13
target: universal2
cross: false
- os: macos-14
target: universal2
cross: false

steps:
- name: checkout
Expand All @@ -41,6 +45,7 @@ jobs:
pip3 install delocate
delocate-wheel -v dist/*.whl
- name: install built wheel
if: ${{ ! matrix.cross }}
run: |
pip3 install optik-py --no-index --find-links dist
python3 -c "import optik"
Expand Down

0 comments on commit 9dfef2b

Please sign in to comment.