diff options
author | Ned Deily <nad@python.org> | 2023-09-28 06:08:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 06:08:39 (GMT) |
commit | 98c0c1de18e9ec02a0dde0a89b9acf9415891de2 (patch) | |
tree | 7482e706c3f774634eff5628516304ee042a139a /Mac | |
parent | c88037d137a98d7c399c7bd74d5117b5bcae1543 (diff) | |
download | cpython-98c0c1de18e9ec02a0dde0a89b9acf9415891de2.zip cpython-98c0c1de18e9ec02a0dde0a89b9acf9415891de2.tar.gz cpython-98c0c1de18e9ec02a0dde0a89b9acf9415891de2.tar.bz2 |
gh-109991: Update macOS installer to use OpenSSL 3.0.10. (GH-110003)
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 c108ee2..c54de88 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.10", - url="https://www.openssl.org/source/openssl-3.0.10.tar.gz", - checksum='1761d4f5b13a1028b9b6f3d4b8e17feb0cedc9370f6afe61d7193d2cdce83323', + name="OpenSSL 3.0.11", + url="https://www.openssl.org/source/openssl-3.0.11.tar.gz", + checksum='b3425d3bb4a2218d0697eb41f7fc0cdede016ed19ca49d168b78e8d947887f55', buildrecipe=build_universal_openssl, configure=None, install=None, |