1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-25 17:36:13 +01:00

oscssl: Fix sys.version_info comparison

This commit is contained in:
Daniel Mach 2022-10-24 13:44:31 +02:00
parent cc0bb5ac7b
commit 5f0156dbde

View File

@ -29,7 +29,7 @@ def create_ssl_context():
""" """
ssl_context = create_urllib3_context() ssl_context = create_urllib3_context()
# we consider anything older than TLSv1_2 insecure # we consider anything older than TLSv1_2 insecure
if sys.version_info <= (3, 6): if sys.version_info[:2] <= (3, 6):
# deprecated since py3.7 # deprecated since py3.7
ssl_context.options |= ssl.OP_NO_TLSv1 ssl_context.options |= ssl.OP_NO_TLSv1
ssl_context.options |= ssl.OP_NO_TLSv1_1 ssl_context.options |= ssl.OP_NO_TLSv1_1