diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-01-04 10:27:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 10:27:15 (GMT) |
commit | f24ac455521e46bf9f6c7971aec0e4abec4451c4 (patch) | |
tree | 70c76fc8db8bb8a7e60f928e8c9d911704d3f29b /Mac | |
parent | ed2d3d15b27f3599edbe3bdd278e529e0f0ba566 (diff) | |
download | cpython-f24ac455521e46bf9f6c7971aec0e4abec4451c4.zip cpython-f24ac455521e46bf9f6c7971aec0e4abec4451c4.tar.gz cpython-f24ac455521e46bf9f6c7971aec0e4abec4451c4.tar.bz2 |
bpo-41837: Update macOS installer build to use OpenSSL 1.1.1i. (GH-24080) (#24084)
(cherry picked from commit 14097a2785414c728d41d8d730a469a8c46ecdb9)
Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index eeb4699..7ef3753 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -209,9 +209,9 @@ def library_recipes(): result.extend([ dict( - name="OpenSSL 1.1.1g", - url="https://www.openssl.org/source/openssl-1.1.1g.tar.gz", - checksum='76766e98997660138cdaf13a187bd234', + name="OpenSSL 1.1.1i", + url="https://www.openssl.org/source/openssl-1.1.1i.tar.gz", + checksum='08987c3cf125202e2b0840035efb392c', buildrecipe=build_universal_openssl, configure=None, install=None, |