Skip to content

Commit

Permalink
Try unsetting __PYVENV_LAUNCHER__
Browse files Browse the repository at this point in the history
  • Loading branch information
zmeri committed Aug 20, 2024
1 parent a6748f9 commit c64540d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v2.20.0
env:
CIBW_BEFORE_BUILD_LINUX: pwd && ls -lah && source ./venv/bin/activate && python -m pip install numpy scipy Cython
CIBW_BEFORE_BUILD_MACOS: pwd && ls -lah && source ./venv/bin/activate && python -m pip install numpy scipy Cython
CIBW_BEFORE_BUILD_WINDOWS: ./venv/Scripts/activate && python -m pip install numpy scipy Cython
CIBW_BEFORE_BUILD_LINUX: python -m pip install numpy scipy Cython
CIBW_BEFORE_BUILD_MACOS: unset __PYVENV_LAUNCHER__ && python -m pip install numpy scipy Cython
CIBW_BEFORE_BUILD_WINDOWS: python -m pip install numpy scipy Cython
CIBW_PRERELEASE_PYTHONS: True
CIBW_SKIP: "pp* *-win32 *-manylinux_i686"

Expand Down

0 comments on commit c64540d

Please sign in to comment.