From 94ff5df1b929b14e4a908bea475e19b82b23af01 Mon Sep 17 00:00:00 2001 From: Alex Zorin Date: Wed, 28 Jun 2023 16:01:02 +1000 Subject: [PATCH] use --use-pep517 in pip_install.py --- tools/pip_install.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/pip_install.py b/tools/pip_install.py index 03c771438..0996ab9a4 100755 --- a/tools/pip_install.py +++ b/tools/pip_install.py @@ -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)