Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Oct 11, 2024
1 parent 7abded2 commit 322afc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ jobs:
- name: Install packages
run: |
pip install pytest
pip install -e .
env LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install -e .
pytest
4 changes: 2 additions & 2 deletions .github/workflows/wheels_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse
env:
# Disable explicitly building PyPy wheels
CFLAGS: "-I/opt/homebrew/opt/openssl@1.1/include"
LDFLAGS: "-L/opt/homebrew/opt/openssl@1.1/lib"
CFLAGS: "-I$(brew --prefix openssl)/include"
LDFLAGS: "-L$(brew --prefix openssl)/lib"
CIBW_SKIP: pp*
CIBW_PRERELEASE_PYTHONS: False

Expand Down

0 comments on commit 322afc3

Please sign in to comment.