diff options
author | Ned Deily <nad@python.org> | 2021-03-01 07:39:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 07:39:08 (GMT) |
commit | 0242494a156970186cbc4121ccf03aefbddea716 (patch) | |
tree | 9c45c7be0117d42dae92677a7115d32258e16d22 | |
parent | 0608425944932f46b544afea04ae6d301a76f5f2 (diff) | |
download | cpython-0242494a156970186cbc4121ccf03aefbddea716.zip cpython-0242494a156970186cbc4121ccf03aefbddea716.tar.gz cpython-0242494a156970186cbc4121ccf03aefbddea716.tar.bz2 |
bpo-41837: Update macOS installer build to use OpenSSL 1.1.1j. (GH-24677)
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2021-02-28-22-49-46.bpo-41837.9fqyXC.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index ef64502..864661e 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -242,9 +242,9 @@ def library_recipes(): result.extend([ dict( - name="OpenSSL 1.1.1i", - url="https://www.openssl.org/source/openssl-1.1.1i.tar.gz", - checksum='08987c3cf125202e2b0840035efb392c', + name="OpenSSL 1.1.1j", + url="https://www.openssl.org/source/openssl-1.1.1j.tar.gz", + checksum='cccaa064ed860a2b4d1303811bf5c682', buildrecipe=build_universal_openssl, configure=None, install=None, diff --git a/Misc/NEWS.d/next/macOS/2021-02-28-22-49-46.bpo-41837.9fqyXC.rst b/Misc/NEWS.d/next/macOS/2021-02-28-22-49-46.bpo-41837.9fqyXC.rst new file mode 100644 index 0000000..5d32d87 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2021-02-28-22-49-46.bpo-41837.9fqyXC.rst @@ -0,0 +1 @@ +Update macOS installer build to use OpenSSL 1.1.1j. |