Commit 78b2d459a33df378a4f69ffc6c33313509cecfe4

Authored by Philippe Lagadec
Committed by GitHub
2 parents e4138e38 c98893dd

Merge pull request #812 from vertexproject/feat_pyparsing

Relax pyparsing requirement.
Showing 2 changed files with 2 additions and 2 deletions
requirements.txt
1 -pyparsing>=2.1.0,<3 1 +pyparsing>=2.1.0,<4
2 olefile>=0.46 2 olefile>=0.46
3 easygui 3 easygui
4 colorclass 4 colorclass
setup.py
@@ -320,7 +320,7 @@ def main(): @@ -320,7 +320,7 @@ def main():
320 test_suite="tests", 320 test_suite="tests",
321 # scripts=scripts, 321 # scripts=scripts,
322 install_requires=[ 322 install_requires=[
323 - "pyparsing>=2.1.0,<3", # changed from 2.2.0 to 2.1.0 for issue #481 323 + "pyparsing>=2.1.0,<4", # changed from 2.2.0 to 2.1.0 for issue #481
324 "olefile>=0.46", 324 "olefile>=0.46",
325 "easygui", 325 "easygui",
326 'colorclass', 326 'colorclass',