mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
Downgrade declared ConfigArgParse requirement. Fix #2243.
This commit is contained in:
parent
e59fcf7ddd
commit
65fbeede69
1 changed files with 4 additions and 1 deletions
5
setup.py
5
setup.py
|
|
@ -33,7 +33,10 @@ version = meta['version']
|
|||
# Please update tox.ini when modifying dependency version requirements
|
||||
install_requires = [
|
||||
'acme=={0}'.format(version),
|
||||
'ConfigArgParse>=0.10.0', # python2.6 support, upstream #17
|
||||
# We technically need ConfigArgParse 0.10.0 for Python 2.6 support, but
|
||||
# saying so here causes a runtime error against our temporary fork of 0.9.3
|
||||
# in which we added 2.6 support (see #2243), so we relax the requirement.
|
||||
'ConfigArgParse>=0.9.3',
|
||||
'configobj',
|
||||
'cryptography>=0.7', # load_pem_x509_certificate
|
||||
'parsedatetime',
|
||||
|
|
|
|||
Loading…
Reference in a new issue