try using virtual environment for python on macOS

This commit is contained in:
Krasimir Angelov
2026-09-09 11:25:31 +02:00
parent 937d072dc4
commit 52c556b784
+7 -2
View File
@@ -237,9 +237,14 @@ jobs:
sudo mv lib/* /opt/homebrew/lib/
sudo mv include/* /opt/homebrew/include/
- name: Create Python virtual environment
run: |
python3 -m venv .venv
.venv/bin/python -m pip install --upgrade pip
- name: Install cibuildwheel
run: |
python3 -m pip install git+https://github.com/joerick/cibuildwheel.git@main
.venv/bin/python -m pip install git+https://github.com/joerick/cibuildwheel.git@main
- name: Install and test bindings
env:
@@ -247,7 +252,7 @@ jobs:
CIBW_TEST_COMMAND: "pytest {project}/src/runtime/python"
CIBW_SKIP: "pp* cp36* cp37* cp38* cp39*"
run: |
python3 -m cibuildwheel src/runtime/python --output-dir wheelhouse
.venv/bin/python -m cibuildwheel src/runtime/python --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with: