Skip to content

Commit

Permalink
use venv so mac build works
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil committed Apr 27, 2024
1 parent 8b83872 commit 55e8703
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build-rtc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,19 @@ jobs:

- uses: actions/setup-python@v4

- name: Create Virtual Environment
run: |
python -m venv venv
- name: Install cibuildwheel
run: python3 -m pip install cibuildwheel==2.15.0
run: |
source venv/bin/activate
pip install cibuildwheel==2.15.0
- name: Build wheels
run: python3 -m cibuildwheel --output-dir dist
run: |
source venv/bin/activate
python -m cibuildwheel --output-dir dist
env:
CIBW_ARCHS: ${{ matrix.archs }}

Expand Down

0 comments on commit 55e8703

Please sign in to comment.