diff options
author | Ned Deily <nad@python.org> | 2023-05-31 05:44:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 05:44:10 (GMT) |
commit | f90d3f68db720bd6d0deda8cc0030339ccd43858 (patch) | |
tree | 4b5ee8435a001aa589e1d3eee1d82d9e01fb113a /Mac | |
parent | 570179906742a813a7bec8422c03a45220dc24e1 (diff) | |
download | cpython-f90d3f68db720bd6d0deda8cc0030339ccd43858.zip cpython-f90d3f68db720bd6d0deda8cc0030339ccd43858.tar.gz cpython-f90d3f68db720bd6d0deda8cc0030339ccd43858.tar.bz2 |
gh-103142: Update macOS installer to use OpenSSL 1.1.1u. (GH-105130)
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 177fc20..9729759 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -246,9 +246,9 @@ def library_recipes(): result.extend([ dict( - name="OpenSSL 1.1.1t", - url="https://www.openssl.org/source/openssl-1.1.1t.tar.gz", - checksum='8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b', + name="OpenSSL 1.1.1u", + url="https://www.openssl.org/source/openssl-1.1.1u.tar.gz", + checksum='e2f8d84b523eecd06c7be7626830370300fbcc15386bf5142d72758f6963ebc6', buildrecipe=build_universal_openssl, configure=None, install=None, |