Commit c98893dd444dbfd3cda9369b1487ae7e9efd256d

Authored by epiphyte
1 parent 83c1e66d

Relax pyparsing requirement. All oletools unit tests pass with pyparsing 3.0.9.

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 2 olefile>=0.46
3 3 easygui
4 4 colorclass
... ...
setup.py
... ... @@ -320,7 +320,7 @@ def main():
320 320 test_suite="tests",
321 321 # scripts=scripts,
322 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 324 "olefile>=0.46",
325 325 "easygui",
326 326 'colorclass',
... ...