@kuba review

This commit is contained in:
Rémy HUBSCHER
2015-12-20 16:03:12 +01:00
parent 6958710030
commit 212f04fd92
2 changed files with 8 additions and 6 deletions
+4 -3
View File
@@ -27,12 +27,13 @@ if sys.version_info < (2, 7):
'argparse',
'mock<1.1.0',
])
elif sys.version_info < (2, 7, 9):
else:
install_requires.append('mock')
if sys.version_info < (2, 7, 9):
# For secure SSL connexion with Python 2.7 (InsecurePlatformWarning)
install_requires.append('ndg-httpsclient')
install_requires.append('pyasn1')
else:
install_requires.append('mock')
docs_extras = [
'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
+4 -3
View File
@@ -55,12 +55,13 @@ if sys.version_info < (2, 7):
'argparse',
'mock<1.1.0',
])
elif sys.version_info < (2, 7, 9):
else:
install_requires.append('mock')
if sys.version_info < (2, 7, 9):
# For secure SSL connexion with Python 2.7 (InsecurePlatformWarning)
install_requires.append('ndg-httpsclient')
install_requires.append('pyasn1')
else:
install_requires.append('mock')
dev_extras = [
# Pin astroid==1.3.5, pylint==1.4.2 as a workaround for #289