From 6a4164a293d489b432a5ee5dd884887c748db864 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Sat, 24 Jan 2015 19:50:51 +0000 Subject: [PATCH] Magical fix for #152 (M2Crypto install dependency order) --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6c49c2f2e..411ac8083 100755 --- a/setup.py +++ b/setup.py @@ -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 = [