From c98893dd444dbfd3cda9369b1487ae7e9efd256d Mon Sep 17 00:00:00 2001 From: epiphyte Date: Fri, 21 Apr 2023 13:15:29 +0000 Subject: [PATCH] Relax pyparsing requirement. All oletools unit tests pass with pyparsing 3.0.9. --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 15e409c..6ba1b65 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -pyparsing>=2.1.0,<3 +pyparsing>=2.1.0,<4 olefile>=0.46 easygui colorclass diff --git a/setup.py b/setup.py index 3ed5a8c..1237634 100644 --- a/setup.py +++ b/setup.py @@ -320,7 +320,7 @@ def main(): test_suite="tests", # scripts=scripts, install_requires=[ - "pyparsing>=2.1.0,<3", # changed from 2.2.0 to 2.1.0 for issue #481 + "pyparsing>=2.1.0,<4", # changed from 2.2.0 to 2.1.0 for issue #481 "olefile>=0.46", "easygui", 'colorclass', -- libgit2 0.21.4