mirror of https://github.com/n1nj4sec/pupy.git
create-workspace: use --no-use-pep517
This commit is contained in:
parent
a78bd3a52f
commit
c652fa2aa5
|
@ -370,7 +370,7 @@ def create_virtualenv(workdir, git_path, orchestrator=None, templates=[]):
|
||||||
print("[+] Install dependencies")
|
print("[+] Install dependencies")
|
||||||
subprocess.check_call([
|
subprocess.check_call([
|
||||||
os.path.join(workdir, 'bin', 'pip'),
|
os.path.join(workdir, 'bin', 'pip'),
|
||||||
'install',
|
'install', '--no-use-pep517',
|
||||||
'-r', 'requirements.txt'
|
'-r', 'requirements.txt'
|
||||||
], cwd=os.path.join(git_path, 'pupy'), stderr=subprocess.STDOUT)
|
], cwd=os.path.join(git_path, 'pupy'), stderr=subprocess.STDOUT)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue