From fbb577ad45c6b7e2c70cd70934b33b7f37f465c6 Mon Sep 17 00:00:00 2001 From: Stanislav Levin Date: Tue, 14 Feb 2023 17:45:40 +0300 Subject: [PATCH] Correct dependency specification for pyparsing wildcard(*) is not allowed in inclusive comparison: https://peps.python.org/pep-0440/#inclusive-ordered-comparison Version is adjusted according to: https://github.com/xmendez/wfuzz/issues/206#issuecomment-673519577 Fixes: https://github.com/xmendez/wfuzz/issues/345 Signed-off-by: Stanislav Levin --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d75874ec..2d2bdcc8 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ install_requires = [ 'pycurl', 'pyparsing<2.4.2;python_version<="3.4"', - 'pyparsing>=2.4*;python_version>="3.5"', + 'pyparsing>=2.4.2;python_version>="3.5"', 'six', 'configparser;python_version<"3.5"', 'chardet',