diff options
author | Ned Deily <nad@python.org> | 2020-04-22 02:41:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 02:41:33 (GMT) |
commit | 783a673f23c5e9ffafe12fe172e119dc0fa2abda (patch) | |
tree | 24c9cb360632587cd41ca8b527c636302e4235b3 /Mac | |
parent | 75bedbe2ed4119ff18a2ea86c544b3cf08a92e75 (diff) | |
download | cpython-783a673f23c5e9ffafe12fe172e119dc0fa2abda.zip cpython-783a673f23c5e9ffafe12fe172e119dc0fa2abda.tar.gz cpython-783a673f23c5e9ffafe12fe172e119dc0fa2abda.tar.bz2 |
bpo-40164: Update macOS installer builds to use OpenSSL 1.1.1g. (GH-19642)
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 0d69c04..956d944 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -215,9 +215,9 @@ def library_recipes(): result.extend([ dict( - name="OpenSSL 1.1.1d", - url="https://www.openssl.org/source/openssl-1.1.1d.tar.gz", - checksum='3be209000dbc7e1b95bcdf47980a3baa', + name="OpenSSL 1.1.1g", + url="https://www.openssl.org/source/openssl-1.1.1g.tar.gz", + checksum='76766e98997660138cdaf13a187bd234', buildrecipe=build_universal_openssl, configure=None, install=None, |