From 6f543441400187179ba4c17d19afa73d45106367 Mon Sep 17 00:00:00 2001 From: Kate Isaac <41767733+kweav@users.noreply.github.com> Date: Fri, 16 Aug 2024 13:59:20 -0400 Subject: [PATCH 1/2] freeze versions --- ottr_python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ottr_python/Dockerfile b/ottr_python/Dockerfile index 917b30c..8ff2c0d 100644 --- a/ottr_python/Dockerfile +++ b/ottr_python/Dockerfile @@ -7,4 +7,4 @@ RUN apt-get -y --no-install-recommends install \ # Install some python packages RUN pip3 install \ - numpy matplotlib pandas seaborn plotnine scikit-learn scipy + numpy=2.0.1 matplotlib=3.9.2 pandas=2.2.2 seaborn=0.13.2 plotnine=0.13.6 scikit-learn=1.5.1 scipy=1.14.0 From e4926c769eff9e82640fe87333216ca7c1d5a7f8 Mon Sep 17 00:00:00 2001 From: Kate Isaac <41767733+kweav@users.noreply.github.com> Date: Fri, 16 Aug 2024 14:05:34 -0400 Subject: [PATCH 2/2] need double equals not sure about quotes yet --- ottr_python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ottr_python/Dockerfile b/ottr_python/Dockerfile index 8ff2c0d..1e94beb 100644 --- a/ottr_python/Dockerfile +++ b/ottr_python/Dockerfile @@ -7,4 +7,4 @@ RUN apt-get -y --no-install-recommends install \ # Install some python packages RUN pip3 install \ - numpy=2.0.1 matplotlib=3.9.2 pandas=2.2.2 seaborn=0.13.2 plotnine=0.13.6 scikit-learn=1.5.1 scipy=1.14.0 + numpy==2.0.1 matplotlib==3.9.2 pandas==2.2.2 seaborn==0.13.2 plotnine==0.13.6 scikit-learn==1.5.1 scipy==1.14.0