diff options
author | Ned Deily <nad@python.org> | 2023-09-28 15:20:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 15:20:36 (GMT) |
commit | f3b61850ce78f95d64512189207f119fe0178123 (patch) | |
tree | 1e6b56a3c4555fb7275c3f968d683ab8697561a4 /Mac | |
parent | 60046a7713af28dc044a91ad4733d52a17000288 (diff) | |
download | cpython-f3b61850ce78f95d64512189207f119fe0178123.zip cpython-f3b61850ce78f95d64512189207f119fe0178123.tar.gz cpython-f3b61850ce78f95d64512189207f119fe0178123.tar.bz2 |
[3.12] gh-109991: Update macOS installer to use OpenSSL 3.0.10. (#110004)
gh-109991: Update macOS installer to use OpenSSL 3.0.10.
(cherry picked from commit 884cd180876f60dc65bf00e33c0435be9918e410)
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, |