diff options
author | Christian Heimes <christian@python.org> | 2019-06-03 18:40:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 18:40:15 (GMT) |
commit | e35d1ba9eab07a59b98b700c5e18ceb13b2561a6 (patch) | |
tree | 0da0371df248afc4d45c4976c6213f44e000eda5 /Tools | |
parent | 06651ee418b5e4e013195d6b702763a1220706a7 (diff) | |
download | cpython-e35d1ba9eab07a59b98b700c5e18ceb13b2561a6.zip cpython-e35d1ba9eab07a59b98b700c5e18ceb13b2561a6.tar.gz cpython-e35d1ba9eab07a59b98b700c5e18ceb13b2561a6.tar.bz2 |
bpo-34271: Fix compatibility with 1.0.2 (GH-13728)
Fix various compatibility issues with LibreSSL and OpenSSL 1.0.2
introduced by bpo-34271.
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/ssl/multissltests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 07bd9b0..7fda4df 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -51,10 +51,11 @@ OPENSSL_RECENT_VERSIONS = [ ] LIBRESSL_OLD_VERSIONS = [ + "2.9.2", ] LIBRESSL_RECENT_VERSIONS = [ - "2.7.4", + "2.8.3", ] # store files in ../multissl |