From ec4e47cd36d6d15fb7341d96ea73edcad8749abb Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Thu, 6 Aug 2020 10:06:55 -0700 Subject: [PATCH] Temporary fix to Pyomo version incompatibility (#686) Will need to update GridPath code to work with Pyomo v5.7. --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index dd300874c..0825a5af0 100644 --- a/setup.py +++ b/setup.py @@ -35,8 +35,9 @@ ], packages=find_packages(), install_requires=[ - "Pyomo", # Optimization modeling language - "pandas", # Data-processing + "Pyomo==5.6.9", # Optimization modeling language + "PyUtilib==5.8.0", # Temporary while fixing Pyomo 5.7 breaking changes + "pandas", # Data-processing "bokeh==1.3.4", # Visualization library "pscript", # Python to JavaScript compiler (for visualization) "networkx" # network package for DC OPF