diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-03-01 08:01:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 08:01:43 (GMT) |
commit | 982e8ecbdf216bc1fa285a4ff45c84c6778856e5 (patch) | |
tree | b78d395942339416ef7b53779c11e88859f7d319 /Mac | |
parent | 132e31f4bf20818a469cbcdba75068f26cb19a65 (diff) | |
download | cpython-982e8ecbdf216bc1fa285a4ff45c84c6778856e5.zip cpython-982e8ecbdf216bc1fa285a4ff45c84c6778856e5.tar.gz cpython-982e8ecbdf216bc1fa285a4ff45c84c6778856e5.tar.bz2 |
bpo-41837: Update macOS installer build to use OpenSSL 1.1.1j. (GH-24677)
(cherry picked from commit 0242494a156970186cbc4121ccf03aefbddea716)
Co-authored-by: Ned Deily <nad@python.org>
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 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, |