diff options
author | Ned Deily <nad@python.org> | 2023-07-31 05:21:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-31 05:21:43 (GMT) |
commit | 23655fc62714aeb374d77bd895e318fb55689fe4 (patch) | |
tree | 52fb9ae7f6edf957e4e5bdc21d52c38a86b23f28 /Mac/BuildScript | |
parent | 0b3d6381757a6616fdf093a2ba99cc68c018b845 (diff) | |
download | cpython-23655fc62714aeb374d77bd895e318fb55689fe4.zip cpython-23655fc62714aeb374d77bd895e318fb55689fe4.tar.gz cpython-23655fc62714aeb374d77bd895e318fb55689fe4.tar.bz2 |
[3.12] gh-99079: Update macOS installer to use OpenSSL 3.0.9. (gh-107472)
Diffstat (limited to 'Mac/BuildScript')
-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 9729759..0fc25ec 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.1u", - url="https://www.openssl.org/source/openssl-1.1.1u.tar.gz", - checksum='e2f8d84b523eecd06c7be7626830370300fbcc15386bf5142d72758f6963ebc6', + name="OpenSSL 3.0.9", + url="https://www.openssl.org/source/openssl-3.0.9.tar.gz", + checksum='eb1ab04781474360f77c318ab89d8c5a03abc38e63d65a603cabbf1b00a1dc90', buildrecipe=build_universal_openssl, configure=None, install=None, |