Skip to content

Commit 887c25d

Browse files
committed
Run delvewheel with path to required msvcp140.dll
1 parent e1f88ba commit 887c25d

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
pip install delvewheel &&
9797
rm -rf {package}/build
9898
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >-
99-
delvewheel repair -w {dest_dir} {wheel}
99+
delvewheel repair -vv --add-path C:\\Windows\\system32 -w {dest_dir} {wheel}
100100
CIBW_AFTER_BUILD: >-
101101
twine check {wheel} &&
102102
python {package}/ci/check_wheel_licenses.py {wheel}
@@ -110,16 +110,16 @@ jobs:
110110
strategy:
111111
matrix:
112112
include:
113-
- os: ubuntu-20.04
114-
cibw_archs: "x86_64"
115-
- os: ubuntu-20.04
116-
cibw_archs: "aarch64"
113+
#- os: ubuntu-20.04
114+
# cibw_archs: "x86_64"
115+
#- os: ubuntu-20.04
116+
# cibw_archs: "aarch64"
117117
- os: windows-latest
118118
cibw_archs: "auto64"
119-
- os: macos-12
120-
cibw_archs: "x86_64"
121-
- os: macos-14
122-
cibw_archs: "arm64"
119+
#- os: macos-12
120+
# cibw_archs: "x86_64"
121+
#- os: macos-14
122+
# cibw_archs: "arm64"
123123

124124
steps:
125125
- name: Set up QEMU
@@ -135,6 +135,7 @@ jobs:
135135
path: dist/
136136

137137
- name: Build wheels for CPython 3.13
138+
if: false
138139
uses: pypa/cibuildwheel@7e5a838a63ac8128d71ab2dfd99e4634dd1bca09 # v2.19.2
139140
with:
140141
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}

0 commit comments

Comments
 (0)