From 515164b299e9ebc41087d64ca9c0d07c23dc4cc0 Mon Sep 17 00:00:00 2001 From: Brian Kim Date: Fri, 19 Apr 2024 13:40:59 -0700 Subject: [PATCH] Use altair-all, un-pin pandas --- docker/py-dsci-100/Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docker/py-dsci-100/Dockerfile b/docker/py-dsci-100/Dockerfile index 6faea38..3773e64 100644 --- a/docker/py-dsci-100/Dockerfile +++ b/docker/py-dsci-100/Dockerfile @@ -25,15 +25,12 @@ RUN mamba install --quiet --yes \ 'nodejs' \ 'psycopg2' \ 'jupyter-resource-usage' \ - 'altair' \ - 'pandas<2.1' \ + 'altair-all' \ + 'pandas' \ && mamba clean --all -f -y \ && fix-permissions "${CONDA_DIR}" \ && fix-permissions "/home/${NB_USER}" -# Install some recent python package that might not be on conda yet -RUN pip install "vegafusion[embed]" vl-convert-python - # Install nbgitpuller, jlab-git, newest pexpect 4.9.0 RUN pip install nbgitpuller jupyterlab-git==0.50.0 pexpect==4.9.0 \ && jupyter lab build