diff --git a/cibuildwheel/macos.py b/cibuildwheel/macos.py index 209991ddf..5ef450a1d 100644 --- a/cibuildwheel/macos.py +++ b/cibuildwheel/macos.py @@ -55,7 +55,7 @@ def call(args, env=None, cwd=None, shell=False): 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/v1.0.2p/patch-macos-python-%s-openssl-v1.0.2p.tar.gz' % config.version]) + call(['curl', '-fsSLo', '/tmp/python-patch.tar.gz', 'https://github.com/mayeut/patch-macos-python-openssl/releases/download/v1.0.2q/patch-macos-python-%s-openssl-v1.0.2q.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)