1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-08-21 14:08:52 +02:00

Merge pull request #1180 from dmach/fix-sys.version_info-cmp

oscssl: Fix sys.version_info comparison
This commit is contained in:
2022-10-24 15:33:55 +02:00
committed by GitHub

View File

@@ -29,7 +29,7 @@ def create_ssl_context():
"""
ssl_context = create_urllib3_context()
# 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
ssl_context.options |= ssl.OP_NO_TLSv1
ssl_context.options |= ssl.OP_NO_TLSv1_1