From 2d6b2e310cf96aa6b2de1660572acb1291d21093 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Nov 2021 10:16:30 +0000 Subject: [PATCH] Update pyparsing requirement from ~=2.0 to >=2,<4 Updates the requirements on [pyparsing](https://github.com/pyparsing/pyparsing) to permit the latest version. - [Release notes](https://github.com/pyparsing/pyparsing/releases) - [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES) - [Commits](https://github.com/pyparsing/pyparsing/compare/pyparsing_2.0.2...pyparsing_3.0.6) --- updated-dependencies: - dependency-name: pyparsing dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 setup.py diff --git a/setup.py b/setup.py old mode 100755 new mode 100644 index dad12e40..fb1054be --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def run_tests(self): packages=[ 'pyhocon', ], - install_requires=['pyparsing~=2.0'], + install_requires=['pyparsing>=2,<4'], extras_require={ 'Duration': ['python-dateutil>=2.8.0'] },