From 9125616db704f6a20f2f35595b77984c6dc0a0c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= <oleavr@gmail.com> Date: Wed, 24 Apr 2024 12:48:36 +0200 Subject: [PATCH] setup: Require Frida >= 16.2.2 As we rely on the private _frida API, which just moved. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 43152540..433a329c 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def main(): url="https://frida.re", install_requires=[ "colorama >= 0.2.7, < 1.0.0", - "frida >= 16.0.9, < 17.0.0", + "frida >= 16.2.2, < 17.0.0", "prompt-toolkit >= 2.0.0, < 4.0.0", "pygments >= 2.0.2, < 3.0.0", ],