create-workspace: use --no-use-pep517

This commit is contained in:
Oleksii Shevchuk 2020-04-16 21:58:20 +03:00
parent a78bd3a52f
commit c652fa2aa5
1 changed files with 1 additions and 1 deletions

View File

@ -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)