From 9880c4fbb73b811b13d7a47c891bf016914a09e7 Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Sat, 25 Apr 2020 16:14:31 +0200 Subject: [PATCH] Update openssl patch from 1.0.2t to 1.0.2u on macOS (#328) --- cibuildwheel/macos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/macos.py b/cibuildwheel/macos.py index dd8b743d..9173849e 100644 --- a/cibuildwheel/macos.py +++ b/cibuildwheel/macos.py @@ -74,7 +74,7 @@ def install_cpython(version, url): call(['sudo', 'installer', '-pkg', '/tmp/Python.pkg', '-target', '/']) # patch open ssl if version == '3.5': - open_ssl_patch_url = 'https://github.com/mayeut/patch-macos-python-openssl/releases/download/v1.0.2t/patch-macos-python-%s-openssl-v1.0.2t.tar.gz' % version + open_ssl_patch_url = 'https://github.com/mayeut/patch-macos-python-openssl/releases/download/v1.0.2u/patch-macos-python-%s-openssl-v1.0.2u.tar.gz' % version download(open_ssl_patch_url, '/tmp/python-patch.tar.gz') call(['sudo', 'tar', '-C', '/Library/Frameworks/Python.framework/Versions/{}/'.format(version), '-xmf', '/tmp/python-patch.tar.gz'])