Use default SSL context when possible

https://docs.python.org/2/library/ssl.html#best-defaults

Deal with older Pythons which didn't do certificate validation, have
sane defaults or even provided a cipher string.
This commit is contained in:
Simon Lundström 2016-10-05 14:18:49 +02:00
parent 44c592df45
commit 99d567492f
2 changed files with 106 additions and 7 deletions

View file

@ -7,6 +7,12 @@ setup(
version="1.6.0",
author="Amr Hassan <amr.hassan@gmail.com>",
install_requires=['six'],
# FIXME This can be removed after 2017-09 when 3.3 is no longer supported
# and pypy3 uses 3.4 or later, see
# https://en.wikipedia.org/wiki/CPython#Version_history
extras_require={
':python_version=="3.3"': ["certifi"],
},
tests_require=['mock', 'pytest', 'coverage', 'pep8', 'pyyaml', 'pyflakes'],
description=("A Python interface to Last.fm and Libre.fm"),
author_email="amr.hassan@gmail.com",