From f14c6c7077d534bec51538a0fbfedc090238bed2 Mon Sep 17 00:00:00 2001 From: Jonathan Kamens Date: Thu, 23 Aug 2012 17:27:00 -0400 Subject: [PATCH] Fix statsmodels version dependencies to make pip happy Use statsmodels>=0.5.0 instead of statsmodels==0.5.0-tutorial-beta, because although the latter is the download version listed in pypi, it installs as 0.5.0, which means if we list that specific version as the requirement, then pip reinstalls it every time launch.sh is run. --- etc/requirements_sci.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/requirements_sci.txt b/etc/requirements_sci.txt index a0104713..cc15764a 100644 --- a/etc/requirements_sci.txt +++ b/etc/requirements_sci.txt @@ -13,7 +13,7 @@ matplotlib==1.1.0 numexpr==2.0.1 Cython==0.15.1 patsy==0.1.0 -statsmodels==0.5.0-tutorial-beta +statsmodels>=0.5.0 # ZeroMQ