Skip to content

Commit

Permalink
COMP: Use python -m pip install pip --upgrade for Windows
Browse files Browse the repository at this point in the history
Otherwise fails now in CI.
  • Loading branch information
thewtex committed Jun 21, 2024
1 parent f38e8b0 commit a52d9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/windows_build_module_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def build_wheels(py_envs=DEFAULT_PY_ENVS, cleanup=True, cmake_options=[]):
use_scikit_build_core = False

# Install dependencies
check_call([pip, "install", "pip", "--upgrade"])
check_call([python_executable, '-m', 'pip', "install", "pip", "--upgrade"])
requirements_file = os.path.join(ROOT_DIR, "requirements-dev.txt")
if os.path.exists(requirements_file):
check_call([pip, "install", "--upgrade", "-r", requirements_file])
Expand Down

0 comments on commit a52d9b5

Please sign in to comment.