diff options
author | Ned Deily <nad@python.org> | 2024-02-06 01:59:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-06 01:59:25 (GMT) |
commit | 638e811a3c54a81d8af5a4c08b9497d210823f78 (patch) | |
tree | 0ab8cef329f799ff422bbc2f74f84443eb5818c4 /Mac | |
parent | 01dceba13e872e9ca24b8e00a2b75db3d0d6c1a3 (diff) | |
download | cpython-638e811a3c54a81d8af5a4c08b9497d210823f78.zip cpython-638e811a3c54a81d8af5a4c08b9497d210823f78.tar.gz cpython-638e811a3c54a81d8af5a4c08b9497d210823f78.tar.bz2 |
gh-109991: Update macOS installer to use OpenSSL 3.0.13. (GH-115052)
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 32de56b..9000fb8 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 3.0.11", - url="https://www.openssl.org/source/openssl-3.0.11.tar.gz", - checksum='b3425d3bb4a2218d0697eb41f7fc0cdede016ed19ca49d168b78e8d947887f55', + name="OpenSSL 3.0.13", + url="https://www.openssl.org/source/openssl-3.0.13.tar.gz", + checksum='88525753f79d3bec27d2fa7c66aa0b92b3aa9498dafd93d7cfa4b3780cdae313', buildrecipe=build_universal_openssl, configure=None, install=None, |