From c0b5916804c51fc81d7cb4bd13bc4a3755a1e40c Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Fri, 23 Feb 2018 14:02:54 -0500 Subject: [PATCH] Update setup.py for calc module. We've been running with pyparsing 2.2.0 in production this whole time so I'm pretty sure we can depend on this. --- common/lib/calc/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/calc/setup.py b/common/lib/calc/setup.py index 9354bb7b83..d62dd9b6eb 100644 --- a/common/lib/calc/setup.py +++ b/common/lib/calc/setup.py @@ -5,7 +5,7 @@ setup( version="0.2", packages=["calc"], install_requires=[ - "pyparsing==2.0.7", + "pyparsing==2.2.0", "numpy==1.6.2", "scipy==0.14.0", ],