From 3615a743fd30083c1fd753dcbba6585ce402a404 Mon Sep 17 00:00:00 2001 From: Zach Riggle Date: Wed, 30 May 2018 13:52:33 -0500 Subject: [PATCH] Fix broken versions of package dependencies Fixes Gallopsled/pwntools#971 Fixes Gallopsled/pwntools#1154 Fixes Gallopsled/pwntools#1160 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2f907dd3f..9a34dca32 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ install_requires = ['paramiko>=1.15.2', 'mako>=1.0.0', 'pyelftools>=0.2.4', - 'capstone', + 'capstone>=3.0.5rc2', # See Gallopsled/pwntools#971, Gallopsled/pwntools#1160 'ropgadget>=5.3', 'pyserial>=2.7', 'requests>=2.0', @@ -58,6 +58,7 @@ 'packaging', 'psutil>=3.3.0', 'intervaltree', + 'sortedcontainers<=2.0.1', # See Gallopsled/pwntools#1154 'unicorn'] # Check that the user has installed the Python development headers