Skip to content

Commit fbb577a

Browse files
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: xmendez#206 (comment) Fixes: xmendez#345 Signed-off-by: Stanislav Levin <[email protected]>
1 parent 1b695ee commit fbb577a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
install_requires = [
3232
'pycurl',
3333
'pyparsing<2.4.2;python_version<="3.4"',
34-
'pyparsing>=2.4*;python_version>="3.5"',
34+
'pyparsing>=2.4.2;python_version>="3.5"',
3535
'six',
3636
'configparser;python_version<"3.5"',
3737
'chardet',

0 commit comments

Comments
 (0)