diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-28 06:34:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 06:34:24 (GMT) |
commit | 82dea84dc491b8d6bdf7242811b5d7427e1eeddc (patch) | |
tree | 78e0221e59e2177acd02b38862c5e943a9a78fd9 | |
parent | 1fd6a73bd8cc7f496a09966a9fe68c27d8180a40 (diff) | |
download | cpython-82dea84dc491b8d6bdf7242811b5d7427e1eeddc.zip cpython-82dea84dc491b8d6bdf7242811b5d7427e1eeddc.tar.gz cpython-82dea84dc491b8d6bdf7242811b5d7427e1eeddc.tar.bz2 |
[3.11] gh-109991: Update macOS installer to use OpenSSL 3.0.10. (GH-110010)
(cherry picked from commit 98c0c1de18e9ec02a0dde0a89b9acf9415891de2)
Co-authored-by: Ned Deily <nad@python.org>
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2023-09-27-22-35-22.gh-issue-109991.-xJzaF.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index c10daa0..980160d 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, diff --git a/Misc/NEWS.d/next/macOS/2023-09-27-22-35-22.gh-issue-109991.-xJzaF.rst b/Misc/NEWS.d/next/macOS/2023-09-27-22-35-22.gh-issue-109991.-xJzaF.rst new file mode 100644 index 0000000..8d36998 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2023-09-27-22-35-22.gh-issue-109991.-xJzaF.rst @@ -0,0 +1 @@ +Update macOS installer to use OpenSSL 3.0.11. |