Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kcleal authored Oct 24, 2024
1 parent fff93e5 commit 9258ca0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:

steps:
- uses: actions/checkout@v4
# Step to install xz on macOS before anything else
- name: Install xz on macOS
if: matrix.os == 'macOS-13'
run: brew install xz
- name: Install project dependencies
run: which python; python -m pip install -r requirements.txt
- name: Build wheels
Expand All @@ -25,7 +29,6 @@ jobs:
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_ARCHS_LINUX: "auto"
CIBW_BEFORE_ALL_MACOS: |
brew install xz
bash ci/osx-deps
CIBW_BEFORE_ALL_LINUX: bash ci/manylinux-deps
CIBW_BEFORE_BUILD_MACOS: |
Expand Down

0 comments on commit 9258ca0

Please sign in to comment.