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 cead886 commit 0f90812
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ jobs:

steps:
- uses: actions/checkout@v4
# Step to install xz on macOS before anything else
- name: Install xz on macOS
- name: Set correct paths for Homebrew on macOS
if: matrix.os == 'macOS-13'
run: brew install xz
run: |
BREW_PREFIX=$(brew --prefix)
export PATH="$BREW_PREFIX/bin:$PATH"
export LIBRARY_PATH="$BREW_PREFIX/lib:$LIBRARY_PATH"
export PKG_CONFIG_PATH="$BREW_PREFIX/lib/pkgconfig:$PKG_CONFIG_PATH"
- name: Install project dependencies
run: which python; python -m pip install -r requirements.txt
- name: Build wheels
Expand Down

0 comments on commit 0f90812

Please sign in to comment.