From 2eb7965708f903fe07dea999e6394274c259fc12 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 11 Nov 2021 18:24:13 -0500 Subject: [PATCH] BLD: limit support of pyparsing to <3 Due to a number of issues with the 3.0.x releases of pyparsing having issues, we are going to for mpl3.5.0 limit to the 2.x series of pyparsing. There is ongoing work on both the Matplotlib and pyparsing sides and we anticipate that we will be able to lift this constraint in the next patch release. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f61f27221555..136ea6eeba94 100644 --- a/setup.py +++ b/setup.py @@ -326,7 +326,7 @@ def make_release_tree(self, base_dir, files): "numpy>=1.17", "packaging>=20.0", "pillow>=6.2.0", - "pyparsing>=2.2.1", + "pyparsing>=2.2.1,<3", "python-dateutil>=2.7", ] + ( # Installing from a git checkout.