From 7be87c53cdb19be5a5b881ebbdb00615fd8cad72 Mon Sep 17 00:00:00 2001 From: pmondon Date: Tue, 22 Oct 2024 09:49:47 +0200 Subject: [PATCH] FIX: exclude the latest capstone as this is an alpha and it breaks ROPgadget Signed-off-by: pmondon --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1e394d838..ac9b5fc5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ dependencies = [ "mako>=1.0.0", "pyelftools>=0.29, <0.30; python_version < '3'", "pyelftools>=0.29; python_version >= '3'", - "capstone>=3.0.5rc2", # see Gallopsled/pwntools#971, Gallopsled/pwntools#1160 + "capstone>=3.0.5rc2, !=6.0.0a1", # see Gallopsled/pwntools#971, Gallopsled/pwntools#1160 "ropgadget>=5.3", "pyserial>=2.7", "requests>=2.0",