From bbc52bce8ad120210860afd7e761c340d163909d Mon Sep 17 00:00:00 2001 From: Matthias Fripp Date: Thu, 20 Jun 2019 17:37:41 -1000 Subject: [PATCH] Add pint to dependencies (needed for Pyomo when testing) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 625bafe85..b2ee887bd 100644 --- a/setup.py +++ b/setup.py @@ -62,6 +62,7 @@ def read(*rnames): ], install_requires=[ 'Pyomo>=4.4.1', # We need a version that works with glpk 4.60+ + 'pint', # needed by Pyomo when we run our tests, but not included 'testfixtures', # used for standard tests 'pandas', # used for input upgrades and testing that functionality ],