diff options
author | Christian Heimes <christian@python.org> | 2019-06-03 18:10:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 18:10:19 (GMT) |
commit | 06651ee418b5e4e013195d6b702763a1220706a7 (patch) | |
tree | 903b602707d2548c2508ab86ca27aac45ba3230b /Tools/ssl | |
parent | e225bebc1409bcf68db74a35ed3c31222883bf8f (diff) | |
download | cpython-06651ee418b5e4e013195d6b702763a1220706a7.zip cpython-06651ee418b5e4e013195d6b702763a1220706a7.tar.gz cpython-06651ee418b5e4e013195d6b702763a1220706a7.tar.bz2 |
bpo-37081: Test with OpenSSL 1.1.1c (GH-13631)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Tools/ssl')
-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 759f5f4..07bd9b0 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -45,9 +45,9 @@ OPENSSL_OLD_VERSIONS = [ ] OPENSSL_RECENT_VERSIONS = [ - "1.0.2p", - "1.1.0i", - "1.1.1", + "1.0.2s", + "1.1.0k", + "1.1.1c", ] LIBRESSL_OLD_VERSIONS = [ |