From a7edf88fc3e9b2604ff03c0ea316c330dce2c92a Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 8 May 2021 19:47:24 +0200 Subject: [PATCH] Only patch PyPy3.6 7.3.3 PyPy3.7 7.3.4 has been fixed and does not require the patch anymore. --- cibuildwheel/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index c230d8cf..8367705e 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -122,7 +122,7 @@ def build(options: BuildOptions) -> None: log.build_start(config.identifier) dependency_constraint_flags: List[PathOrStr] = [] - if config.identifier.startswith("pp"): + if config.identifier.startswith("pp36"): # Patch PyPy to make sure headers get installed into a venv patch_path = resources_dir / "pypy_venv.patch" patch_docker_path = PurePath("/pypy_venv.patch")