We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9a08b25 + a52d9b5 commit 2ac066fCopy full SHA for 2ac066f
1 file changed
scripts/windows_build_module_wheels.py
@@ -50,7 +50,7 @@ def build_wheels(py_envs=DEFAULT_PY_ENVS, cleanup=True, cmake_options=[]):
50
use_scikit_build_core = False
51
52
# Install dependencies
53
- check_call([pip, "install", "pip", "--upgrade"])
+ check_call([python_executable, '-m', 'pip', "install", "pip", "--upgrade"])
54
requirements_file = os.path.join(ROOT_DIR, "requirements-dev.txt")
55
if os.path.exists(requirements_file):
56
check_call([pip, "install", "--upgrade", "-r", requirements_file])
0 commit comments