use --use-pep517 in pip_install.py

This commit is contained in:
Alex Zorin 2023-06-28 16:01:02 +10:00
parent c27e4131c4
commit 94ff5df1b9

View file

@ -29,7 +29,8 @@ def call_with_print(command, env):
def pip_install_with_print(args_str, env):
command = ['"', sys.executable, '" -m pip install --disable-pip-version-check ', args_str]
command = ['"', sys.executable, '" -m pip install --disable-pip-version-check --use-pep517 ',
args_str]
call_with_print(''.join(command), env=env)