From de4d26cfd5e3a94d5248b8fe88519c0ac667b747 Mon Sep 17 00:00:00 2001 From: "Federico M. Zagarzazu" Date: Mon, 26 Sep 2016 21:13:35 -0500 Subject: [PATCH] Set scipy and pandas version range in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c57bd866..776f2efb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,8 +55,8 @@ RUN mkdir ${PROJECT_DIR} \ WORKDIR /ta-lib RUN pip install 'numpy>=1.11.1,<2.0.0' \ - && pip install scipy==0.15.1 \ - && pip install pandas==0.16.1 \ + && pip install 'scipy>=0.17.1,<1.0.0' \ + && pip install 'pandas>=0.18.1,<1.0.0' \ && ./configure --prefix=/usr \ && make \ && make install \