From c759e33bc62f941148c0c598cfde514b3369e632 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 419aa284..c6a1caec 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",