Skip to content

Commit 1d4ed38

Browse files
authored
Merge pull request #187 from thewtex/delvewheel-path
BUG: Correct delvewheel path in Windows module build wheel script
2 parents 3f63735 + ab68841 commit 1d4ed38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/windows_build_module_wheels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def fixup_wheel(py_envs, filepath, lib_paths:str='', exclude_libs:str=''):
113113

114114
py_env = py_envs[0]
115115

116-
delve_wheel = os.path.join(ROOT_DIR, "venv-" + py_env, "Scripts", "delvewheel.exe")
116+
delve_wheel = os.path.join("C:/P/IPP", "venv-" + py_env, "Scripts", "delvewheel.exe")
117117
check_call([delve_wheel, "repair", "--no-mangle-all", "--add-path",
118118
lib_paths, "--no-dll", exclude_libs, "--ignore-in-wheel", "-w",
119119
os.path.join(ROOT_DIR, "dist"), filepath])

0 commit comments

Comments
 (0)