Closed NeolithEra closed 5 years ago
Fix your direct dependencies to be frida<13.0.0,>=12.5.3 and frida-tools==2.0.2, to remove this conflict. I have checked this revision will not affect your downstream projects now.
Remove the direct dependency frida, then you can use this package transitively introduced by frida-tools.
@bannsec Which solution do you prefer, 1 or 2? Please let me know your choice, then I can submit a PR to fix it.
Thanks!
@bannsec Could you help me review this issue?
Thanks for the info. Wasn't actually using that dependency so i just removed it.
Hi, as shown in the following full dependency graph of frida-util, frida-util requires frida (the latest version), while the installed version of frida-tools(2.0.2) requires frida<13.0.0,>=12.5.3.
According to Pip's “first found wins” installation strategy, frida 12.6.11 is the actually installed version.
Although the first found package version frida 12.6.11 just satisfies the later dependency constraint (frida<13.0.0,>=12.5.3), it will lead to a build failure once developers release a newer version of frida whose version number is greater than 13.0.0.
It'll be good if we just adjust the constraints (if possible) here, which can avoid potential dependency conflicts in the near future.
Dependency tree--------
Thanks for your attention. Best, Neolith