diff options
author | Christian Heimes <christian@python.org> | 2022-03-15 20:31:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 20:31:00 (GMT) |
commit | a59ac1e7d20713573c15c5259c83e998a73e9094 (patch) | |
tree | 5b4039a408ec36350ba530bb5a939cbc7f353fcf /Mac | |
parent | 88c243fd8d5a43282ef06bd0872e3b88c68bb856 (diff) | |
download | cpython-a59ac1e7d20713573c15c5259c83e998a73e9094.zip cpython-a59ac1e7d20713573c15c5259c83e998a73e9094.tar.gz cpython-a59ac1e7d20713573c15c5259c83e998a73e9094.tar.bz2 |
[3.10] bpo-47024: Update OpenSSL to 1.1.1n (GH-31895) (GH-31916)
Co-authored-by: Zachary Ware <zachary.ware@gmail.com>.
Co-authored-by: Christian Heimes <christian@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 6720c0b..4308a20 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 1.1.1m", - url="https://www.openssl.org/source/openssl-1.1.1m.tar.gz", - checksum='8ec70f665c145c3103f6e330f538a9db', + name="OpenSSL 1.1.1n", + url="https://www.openssl.org/source/openssl-1.1.1n.tar.gz", + checksum='2aad5635f9bb338bc2c6b7d19cbc9676', buildrecipe=build_universal_openssl, configure=None, install=None, |