From d6c2859a93526b496607f0f5ad5e403eabd43900 Mon Sep 17 00:00:00 2001 From: agroce Date: Sat, 15 Jun 2019 08:06:38 -0700 Subject: [PATCH] go back to not trying manticore/angr on mac (it'll fail) --- bin/setup.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/setup.py.in b/bin/setup.py.in index 1bcb41f..0341eaf 100644 --- a/bin/setup.py.in +++ b/bin/setup.py.in @@ -30,7 +30,7 @@ setuptools.setup( author_email="peter@trailofbits.com", license="Apache-2.0", keywords="tdd testing symbolic execution", - install_requires=['angr', 'manticore'], + install_requires=["angr ; sys_platform != 'darwin'", "manticore ; sys_platform != 'darwin'"], entry_points={ 'console_scripts': [ 'deepstate = deepstate.main_manticore:main',