From 5660e7089df8733952ab3e4c2245903777c4f764 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 8 Jul 2023 16:24:00 +0000 Subject: [PATCH] Don't specify a release candidate in version constraint for androguard dependency This causes pip to include pre-releases for all dependencies, which is unfortunate in many cases. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 72c592b2..25e7412f 100755 --- a/setup.py +++ b/setup.py @@ -91,7 +91,7 @@ setup( 'babel', ], install_requires=[ - 'androguard >= 3.1.0rc2, != 3.3.0, != 3.3.1, != 3.3.2', + 'androguard >= 3.1.0, != 3.3.0, != 3.3.1, != 3.3.2', 'clint', 'defusedxml', 'GitPython',