From 7003ee3ed23f58497dcb138eb7df396f41637625 Mon Sep 17 00:00:00 2001 From: Andrei Radulescu Date: Tue, 25 Feb 2025 18:36:42 +0200 Subject: [PATCH] edl: removed "no-binary" capstone requirement (#459) --no-binary capstone not needed anymore --- tools/edl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/edl b/tools/edl index 40de9cb..597f7ab 100755 --- a/tools/edl +++ b/tools/edl @@ -23,10 +23,7 @@ if [ "$(< .git/HEAD)" != "$VERSION" ]; then git fetch origin $VERSION git checkout $VERSION git submodule update --depth=1 --init --recursive - - # TODO: remove "--no-binary capstone" when capstone v5.0.2 is released - # https://github.com/capstone-engine/capstone/issues/2301#issuecomment-2026835275 - pip3 install -r requirements.txt --no-binary capstone + pip3 install -r requirements.txt fi popd > /dev/null