diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-11 17:09:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-11 17:09:28 (GMT) |
commit | 0b7f3706e6a4d72f7e9988cebc4826ad2c4c4753 (patch) | |
tree | b89ab817f35d171f18be5b32894b5e32c4a619f5 /Tools | |
parent | f90cbcbfe318fc4f0107bfad3cfc653ad1501c58 (diff) | |
download | cpython-0b7f3706e6a4d72f7e9988cebc4826ad2c4c4753.zip cpython-0b7f3706e6a4d72f7e9988cebc4826ad2c4c4753.tar.gz cpython-0b7f3706e6a4d72f7e9988cebc4826ad2c4c4753.tar.bz2 |
bpo-38117: Test with OpenSSL 1.1.1d (GH-15983)
Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit 58ab13479d854491ac9207bacfae25e8b18b044a)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/ssl/multissltests.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 7fda4df..d816810 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -45,17 +45,16 @@ OPENSSL_OLD_VERSIONS = [ ] OPENSSL_RECENT_VERSIONS = [ - "1.0.2s", - "1.1.0k", - "1.1.1c", + "1.0.2t", + "1.1.0l", + "1.1.1d", ] LIBRESSL_OLD_VERSIONS = [ - "2.9.2", ] LIBRESSL_RECENT_VERSIONS = [ - "2.8.3", + "2.9.2", ] # store files in ../multissl |