I wrote a plugin that syncs the files to a remote server through WebDAV and until recently it worked fine.
Now the servers where I’m uploading those files to have disabled SSL versions lower then TLSv1.1 and it looks like the Python version bundled with ST3 doesn’t have support for this.
Only following versions seems to be supported: ‘PROTOCOL_SSLv2’, ‘PROTOCOL_SSLv23’, ‘PROTOCOL_SSLv3’, ‘PROTOCOL_TLSv1’
While on my local installation of Python 2.7.10 and Python 3.4.3 the following versions are supported ‘PROTOCOL_SSLv23’, ‘PROTOCOL_SSLv3’, ‘PROTOCOL_TLSv1’, ‘PROTOCOL_TLSv1_1’, ‘PROTOCOL_TLSv1_2’.
Can we get an updated version of Python bundled with ST3?