mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 06:15:36 -04:00
@kuba review
This commit is contained in:
parent
6958710030
commit
212f04fd92
2 changed files with 8 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
7
setup.py
7
setup.py
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue