From c100dbf8bc1f11392240440ac283165175dae5e0 Mon Sep 17 00:00:00 2001 From: Manabu Niseki Date: Mon, 12 Feb 2024 16:21:22 +0900 Subject: [PATCH] Relax pyparsing version specifier --- requirements.txt | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 15e409c0..8609f0f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -pyparsing>=2.1.0,<3 +pyparsing>=2.1.0,<4.0 olefile>=0.46 easygui colorclass msoffcrypto-tool; platform_python_implementation!="PyPy" or (python_version>="3" and platform_system!="Windows" and platform_system!="Darwin") -pcodedmp>=1.2.5 \ No newline at end of file +pcodedmp>=1.2.5 diff --git a/setup.py b/setup.py index 8cf7edac..72ca60dc 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.0", # changed from 2.2.0 to 2.1.0 for issue #481 "olefile>=0.46", "easygui", 'colorclass',