From c652fa2aa5a5443f1eb160179ffb369667c521bd Mon Sep 17 00:00:00 2001 From: Oleksii Shevchuk Date: Thu, 16 Apr 2020 21:58:20 +0300 Subject: [PATCH] create-workspace: use --no-use-pep517 --- create-workspace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-workspace.py b/create-workspace.py index 241b6178..bda69e28 100755 --- a/create-workspace.py +++ b/create-workspace.py @@ -370,7 +370,7 @@ def create_virtualenv(workdir, git_path, orchestrator=None, templates=[]): print("[+] Install dependencies") subprocess.check_call([ os.path.join(workdir, 'bin', 'pip'), - 'install', + 'install', '--no-use-pep517', '-r', 'requirements.txt' ], cwd=os.path.join(git_path, 'pupy'), stderr=subprocess.STDOUT)