From 6bc729cd6fb96b953c91903fbcbe9c67c91e18a5 Mon Sep 17 00:00:00 2001 From: Moyiz <8603313+moyiz@users.noreply.github.com> Date: Sun, 24 Oct 2021 14:22:35 +0300 Subject: [PATCH] Limit pyparsing to major version 2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 419aa284a..3d5a6172f 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ author=about["__author__"], author_email=about["__email__"], python_requires=">=3.6", - install_requires=["pyparsing>=2.0.2"], # Needed to avoid issue #91 + install_requires=["pyparsing>=2.0.2<3"], # Needed to avoid issue #91 classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers",