We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 933e15f commit 9b0992aCopy full SHA for 9b0992a
1 file changed
.github/workflows/cibuildwheel.yml
@@ -22,11 +22,16 @@ jobs:
22
with:
23
python-version: "3.11"
24
25
- - name: Install cibuildwheel and build dependencies
+ - name: Install cibuildwheel
26
run: |
27
python -m pip install --upgrade pip
28
+ python -m pip install cibuildwheel
29
+
30
+ - name: Install Windows build dependencies
31
+ if: runner.os == 'Windows'
32
+ run: |
33
# Install these on the host so cibuildwheel can resolve the paths
- python -m pip install cibuildwheel scipy-openblas delvewheel
34
+ python -m pip install scipy-openblas delvewheel
35
36
- name: Build wheels
37
run: python -m cibuildwheel --output-dir wheelhouse
0 commit comments