This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Vladyslav.Bondar
Recipients Vladyslav.Bondar, bugsrep, christian.heimes, skip.montanaro
Date 2020-09-11.09:10:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1599815430.19.0.24282730613.issue41561@roundup.psfhosted.org>
In-reply-to
Content
This is about openssl configuration in Ubuntu. In the latest Ubuntu, they disabled TLS 1.0/1.1.

So to enable it back there is a workaround (taken from StackOverflow):

You should modify openssl config: /etc/ssl/openssl.cnf

You need to add this to the beginning of your config file:

openssl_conf = default_conf

And then this to the end:

[ default_conf ]

ssl_conf = ssl_sect

[ssl_sect]

system_default = ssl_default_sect

[ssl_default_sect]
MinProtocol = None
CipherString = DEFAULT:@SECLEVEL=1
History
Date User Action Args
2020-09-11 09:10:30Vladyslav.Bondarsetrecipients: + Vladyslav.Bondar, skip.montanaro, christian.heimes, bugsrep
2020-09-11 09:10:30Vladyslav.Bondarsetmessageid: <1599815430.19.0.24282730613.issue41561@roundup.psfhosted.org>
2020-09-11 09:10:30Vladyslav.Bondarlinkissue41561 messages
2020-09-11 09:10:30Vladyslav.Bondarcreate