Skip to content

Commit

Permalink
Find pyenv path from build agent (#1841)
Browse files Browse the repository at this point in the history
  • Loading branch information
yongtang authored Sep 7, 2023
1 parent 332335b commit 2c9d152
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,12 @@ jobs:
- name: Auditwheel ${{ matrix.python }} macOS
run: |
set -x -e
pyenv versions
pyenv which python
python -m pip install twine delocate==0.10.3
ls -la $(pyenv root)/shims
delocate-wheel --version
pyenv which delocate-wheel
ls -la $(pyenv root)/shims/
$(pyenv root)/shims/delocate-wheel --version
ls dist/*
mkdir -p wheelhouse
for f in dist/*.whl; do
Expand Down

0 comments on commit 2c9d152

Please sign in to comment.