Skip to content

Commit

Permalink
Fix macos wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Oct 11, 2024
1 parent ce3cc10 commit 3723dae
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/wheels_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@ jobs:
- name: Install cibuildwheel
run: python -m pip install cibuildwheel

- name: Install openssl
run: brew install openssl@1.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
# Disable explicitly building PyPy wheels
CFLAGS: "-I/usr/local/opt/openssl@1.1/include"
LDFLAGS: "-L/usr/local/opt/openssl@1.1/lib"
CFLAGS: "-I/opt/homebrew/opt/openssl@1.1/include"
LDFLAGS: "-L/opt/homebrew/opt/openssl@1.1/lib"
CIBW_SKIP: pp*
CIBW_PRERELEASE_PYTHONS: False

Expand Down

0 comments on commit 3723dae

Please sign in to comment.