diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-12-17 15:38:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 15:38:11 (GMT) |
commit | 251d2eadc7f5b4042245709f41c38169a284e146 (patch) | |
tree | 6cd8629c5546fcca0734604cb5c7eeb03c56675f /Tools | |
parent | 87539cc716fab47cd4f501f2441c4ab8e80bce6f (diff) | |
download | cpython-251d2eadc7f5b4042245709f41c38169a284e146.zip cpython-251d2eadc7f5b4042245709f41c38169a284e146.tar.gz cpython-251d2eadc7f5b4042245709f41c38169a284e146.tar.bz2 |
bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170)
(cherry picked from commit 2985feac4e02d590bb78bcce9e30864be53280ac)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/ssl/multissltests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index ba2663e..8fe5b5d 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -48,7 +48,7 @@ OPENSSL_OLD_VERSIONS = [ OPENSSL_RECENT_VERSIONS = [ "1.1.1l", - "3.0.0" + "3.0.1" ] LIBRESSL_OLD_VERSIONS = [ |