From 5be96585e6b9fbc7607513d3c9a96e1e17ce8cc7 Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Fri, 9 Oct 2020 22:54:52 +0200 Subject: [PATCH] Revert "patch also python 3.5" This reverts commit 0980d5dcf57a4f959bb7b6740658e147ed2f67b6. --- cibuildwheel/macos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cibuildwheel/macos.py b/cibuildwheel/macos.py index ba93f0e6a..94b715bda 100644 --- a/cibuildwheel/macos.py +++ b/cibuildwheel/macos.py @@ -85,8 +85,8 @@ def install_cpython(version: str, url: str) -> Path: open_ssl_patch_url = f'https://github.com/mayeut/patch-macos-python-openssl/releases/download/v1.0.2u/patch-macos-python-{version}-openssl-v1.0.2u.tar.gz' download(open_ssl_patch_url, Path('/tmp/python-patch.tar.gz')) call(['sudo', 'tar', '-C', f'/Library/Frameworks/Python.framework/Versions/{version}/', '-xmf', '/tmp/python-patch.tar.gz']) - - call(["sudo", str(installation_bin_path/python_executable), str(install_certifi_script)]) + else: + call(["sudo", str(installation_bin_path/python_executable), str(install_certifi_script)]) pip_executable = 'pip3' if version[0] == '3' else 'pip' make_symlinks(installation_bin_path, python_executable, pip_executable)