refactor: minor tweaks from @joerick

This commit is contained in:
Henry Schreiner
2020-08-16 14:05:39 -04:00
parent 416c6f3a3c
commit fd2b5d3270
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -184,7 +184,7 @@ def pep_518_cp35_workaround(package_dir: Path, env: Dict[str, str]) -> None:
with reqfile.open("w") as f:
for r in requirements:
print(r, file=f)
call(['pip', 'install', '-r', str(reqfile)], env=env)
call(['pip', 'install', '-r', reqfile], env=env)
def build(options: BuildOptions) -> None: