Skip to content

Commit

Permalink
Fix macOS build (#23)
Browse files Browse the repository at this point in the history
Directly invoking `setup.py` was causing a build failure on macOS; using `pip3` solves the problem.

Signed-off-by: Michael Greenberg <[email protected]>
  • Loading branch information
mgree authored Nov 7, 2022
1 parent 13817de commit b31a032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:

# we don't reuse the wheels so that all of the CI runs can happen concurrently
- name: Install Python directly
run: sudo python3 setup.py install
run: sudo pip3 install .

- name: Test Python bindings
run: make -C python test
Expand Down

0 comments on commit b31a032

Please sign in to comment.