From 0d3e67b1f99a2dedf98a9334d2d098d5d2d96f5f Mon Sep 17 00:00:00 2001 From: mayeut Date: Fri, 26 Oct 2018 19:25:25 +0200 Subject: [PATCH] Update openssl patch from 1.0.2o to 1.0.2p on macOS --- cibuildwheel/macos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/macos.py b/cibuildwheel/macos.py index 74e1990c..bdeedeec 100644 --- a/cibuildwheel/macos.py +++ b/cibuildwheel/macos.py @@ -55,7 +55,7 @@ def build(project_dir, package_name, output_dir, test_command, test_requires, be call(['sudo', 'installer', '-pkg', '/tmp/Python.pkg', '-target', '/']) # patch open ssl if config.version in ('3.4', '3.5'): - call(['curl', '-fsSLo', '/tmp/python-patch.tar.gz', 'https://github.com/mayeut/patch-macos-python-openssl/releases/download/v0.1.0/patch-macos-python-%s-openssl-v0.1.0.tar.gz' % config.version]) + call(['curl', '-fsSLo', '/tmp/python-patch.tar.gz', 'https://github.com/mayeut/patch-macos-python-openssl/releases/download/v1.0.2p/patch-macos-python-%s-openssl-v1.0.2p.tar.gz' % config.version]) call(['sudo', 'tar', '-C', '/Library/Frameworks/Python.framework/Versions/%s/' % config.version, '-xmf', '/tmp/python-patch.tar.gz']) installation_bin_path = '/Library/Frameworks/Python.framework/Versions/{}/bin'.format(config.version)