Try original

This commit is contained in:
Henry Schreiner
2020-07-06 01:31:47 -04:00
committed by GitHub
parent c36be04ee8
commit fc24230cb4
+1 -2
View File
@@ -172,8 +172,7 @@ def pep_518_cp35_workaround(package_dir: Path, env: Dict[str, str]) -> None:
else []
)
if requirements:
escaped_requirements = [f'{s!r}' for s in requirements]
shell(['pip', 'install'] + escaped_requirements, env=env)
shell(['pip', 'install'] + requirements, env=env)
def build(options: BuildOptions) -> None: