diff options
author | Benjamin Peterson <benjamin@python.org> | 2020-03-31 20:52:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 20:52:23 -0500 |
commit | ba8a2bcebfdb41acafea9a195e45e9d177dc216f (patch) | |
tree | f1ce2a1300e12824c8a6d33f2dcdcfd5b7d0545d | |
parent | [2.7] closes bpo-38576: Disallow control characters in hostnames in http.clie... (diff) | |
download | cpython-ba8a2bcebfdb41acafea9a195e45e9d177dc216f.tar.gz cpython-ba8a2bcebfdb41acafea9a195e45e9d177dc216f.tar.bz2 cpython-ba8a2bcebfdb41acafea9a195e45e9d177dc216f.zip |
[2.7] closes bpo-40125: Update multissltests.py to use OpenSSL 1.1.1f. (GH-19251)
(cherry picked from commit cd16661f903153ecac55f190ed682e576c5deb24)
-rwxr-xr-x | Tools/ssl/multissltests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 78b068a46a5..d351804a921 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -46,9 +46,9 @@ OPENSSL_OLD_VERSIONS = [ ] OPENSSL_RECENT_VERSIONS = [ - "1.0.2p", - "1.1.0i", - "1.1.1", + "1.0.2t", + "1.1.0l", + "1.1.1f", ] LIBRESSL_OLD_VERSIONS = [ |