From fc24230cb4269c264cbfadaba2692eee9aca5ccd Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 6 Jul 2020 01:31:47 -0400 Subject: [PATCH] Try original --- cibuildwheel/windows.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cibuildwheel/windows.py b/cibuildwheel/windows.py index dfbfc368..7a694797 100644 --- a/cibuildwheel/windows.py +++ b/cibuildwheel/windows.py @@ -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: