Skip to content

Commit 2d749e7

Browse files
authored
Enhance cibuildwheel installation with dependencies
Updated the cibuildwheel installation step to include build dependencies.
1 parent 63613a3 commit 2d749e7

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,14 @@ jobs:
2222
with:
2323
python-version: "3.11"
2424

25-
- name: Install cibuildwheel
26-
run: python -m pip install --upgrade pip cibuildwheel
25+
- name: Install cibuildwheel and build dependencies
26+
run: |
27+
python -m pip install --upgrade pip
28+
# Install these on the host so cibuildwheel can resolve the paths
29+
python -m pip install cibuildwheel scipy-openblas delvewheel
30+
31+
- name: Build wheels
32+
run: python -m cibuildwheel --output-dir wheelhouse
2733

2834
- name: Build wheels
2935
run: python -m cibuildwheel --output-dir wheelhouse

0 commit comments

Comments
 (0)