mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 08:09:10 +02:00
Merge pull request #188 from kuba/bugs/152
Magical fix for #152 (M2Crypto install dependency order)
This commit is contained in:
@@ -5,7 +5,6 @@ from setuptools import setup
|
||||
install_requires = [
|
||||
'argparse',
|
||||
'jsonschema',
|
||||
'M2Crypto',
|
||||
'mock',
|
||||
'pycrypto',
|
||||
'python-augeas',
|
||||
@@ -13,6 +12,9 @@ install_requires = [
|
||||
'requests',
|
||||
'zope.component',
|
||||
'zope.interface',
|
||||
# order of items in install_requires DOES matter and M2Crypto has
|
||||
# to go last, see #152
|
||||
'M2Crypto',
|
||||
]
|
||||
|
||||
docs_extras = [
|
||||
|
||||
Reference in New Issue
Block a user