diff options
author | Zachary Ware <zach@python.org> | 2024-09-05 12:29:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 12:29:36 (GMT) |
commit | 092abc4060768f2ae8b7b9c133558bf05bfeff88 (patch) | |
tree | 28ed66ba46331abc95a5371cbbf4b1ecc5c982ec /Mac/BuildScript | |
parent | 16be8db6bec7bf8b58df80601cab58a26eee4afa (diff) | |
download | cpython-092abc4060768f2ae8b7b9c133558bf05bfeff88.zip cpython-092abc4060768f2ae8b7b9c133558bf05bfeff88.tar.gz cpython-092abc4060768f2ae8b7b9c133558bf05bfeff88.tar.bz2 |
gh-123418: Update macOS installer to use OpenSSL 3.0.15 (#123684)
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 8386e40..b977388 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.13", - url="https://www.openssl.org/source/openssl-3.0.13.tar.gz", - checksum='88525753f79d3bec27d2fa7c66aa0b92b3aa9498dafd93d7cfa4b3780cdae313', + name="OpenSSL 3.0.15", + url="https://github.com/openssl/openssl/releases/download/openssl-3.0.15/openssl-3.0.15.tar.gz", + checksum='23c666d0edf20f14249b3d8f0368acaee9ab585b09e1de82107c66e1f3ec9533', buildrecipe=build_universal_openssl, configure=None, install=None, |