Skip to content

Commit

Permalink
Correct dependency specification for pyparsing
Browse files Browse the repository at this point in the history
wildcard(*) is not allowed in inclusive comparison:
https://peps.python.org/pep-0440/#inclusive-ordered-comparison

Version is adjusted according to:
xmendez#206 (comment)

Fixes: xmendez#345
Signed-off-by: Stanislav Levin <slev@altlinux.org>
  • Loading branch information
stanislavlevin committed Feb 14, 2023
1 parent 1b695ee commit fbb577a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit fbb577a

Please sign in to comment.