We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63613a3 commit 2d749e7Copy full SHA for 2d749e7
1 file changed
.github/workflows/cibuildwheel.yml
@@ -22,8 +22,14 @@ jobs:
22
with:
23
python-version: "3.11"
24
25
- - name: Install cibuildwheel
26
- run: python -m pip install --upgrade pip cibuildwheel
+ - name: Install cibuildwheel and build dependencies
+ 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
33
34
- name: Build wheels
35
run: python -m cibuildwheel --output-dir wheelhouse
0 commit comments