diff options
author | Gregory P. Smith <greg@krypto.org> | 2023-06-05 15:41:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-05 15:41:51 (GMT) |
commit | e15de14c16ce98e773c31607bd70ee911e4ac073 (patch) | |
tree | 6f6a14d4d18bfc89562913345a3062a99caf35ac /Tools/ssl/multissltests.py | |
parent | c9bf00b1ad440077b28143693025bcba0d90f26e (diff) | |
download | cpython-e15de14c16ce98e773c31607bd70ee911e4ac073.zip cpython-e15de14c16ce98e773c31607bd70ee911e4ac073.tar.gz cpython-e15de14c16ce98e773c31607bd70ee911e4ac073.tar.bz2 |
[3.9] gh-103142: Upgrade binary builds and CI to OpenSSL 1.1.1u (GH-105174) (GH-105200) (#105205)
Upgrade builds to OpenSSL 1.1.1u.
Also updates _ssl_data_111.h from OpenSSL 1.1.1u, _ssl_data_300.h from 3.0.9.
Manual edits to the _ssl_data_300.h file prevent it from removing any
existing definitions in case those exist in some peoples builds and were
important (avoiding regressions during backporting).
(cherry picked from commit ede89af)
Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Tools/ssl/multissltests.py')
-rwxr-xr-x | Tools/ssl/multissltests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index daf1843..b704aed 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -49,8 +49,8 @@ OPENSSL_OLD_VERSIONS = [ ] OPENSSL_RECENT_VERSIONS = [ - "1.1.1t", - "3.0.8" + "1.1.1u", + "3.0.9", ] LIBRESSL_OLD_VERSIONS = [ |