mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:41:53 +02:00
@kuba review
This commit is contained in:
+4
-3
@@ -27,12 +27,13 @@ if sys.version_info < (2, 7):
|
|||||||
'argparse',
|
'argparse',
|
||||||
'mock<1.1.0',
|
'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)
|
# For secure SSL connexion with Python 2.7 (InsecurePlatformWarning)
|
||||||
install_requires.append('ndg-httpsclient')
|
install_requires.append('ndg-httpsclient')
|
||||||
install_requires.append('pyasn1')
|
install_requires.append('pyasn1')
|
||||||
else:
|
|
||||||
install_requires.append('mock')
|
|
||||||
|
|
||||||
docs_extras = [
|
docs_extras = [
|
||||||
'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
|
'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
|
||||||
|
|||||||
@@ -55,12 +55,13 @@ if sys.version_info < (2, 7):
|
|||||||
'argparse',
|
'argparse',
|
||||||
'mock<1.1.0',
|
'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)
|
# For secure SSL connexion with Python 2.7 (InsecurePlatformWarning)
|
||||||
install_requires.append('ndg-httpsclient')
|
install_requires.append('ndg-httpsclient')
|
||||||
install_requires.append('pyasn1')
|
install_requires.append('pyasn1')
|
||||||
else:
|
|
||||||
install_requires.append('mock')
|
|
||||||
|
|
||||||
dev_extras = [
|
dev_extras = [
|
||||||
# Pin astroid==1.3.5, pylint==1.4.2 as a workaround for #289
|
# Pin astroid==1.3.5, pylint==1.4.2 as a workaround for #289
|
||||||
|
|||||||
Reference in New Issue
Block a user