diff --git a/images/datascience-notebook/Dockerfile b/images/datascience-notebook/Dockerfile index 5d144b27..dee33ff1 100644 --- a/images/datascience-notebook/Dockerfile +++ b/images/datascience-notebook/Dockerfile @@ -57,7 +57,8 @@ ARG JUPYTERHUB_VERSION=3.0.0 PANDAS_VERSION=2.0.3 STATSMODELS_VERSION=0.14.0 NBC # Add essential pip/mamba packages # mistune added for nbgrader issues RUN pip install nbgrader nbgitpuller nbresuse pillow typing-extensions tzlocal appdirs gputil mock pytest jupyter_server_terminals \ - nltk jupyterhub==$JUPYTERHUB_VERSION statsmodels==$STATSMODELS_VERSION nbconvert==$NBCONVERT_VERSION pandas==$PANDAS_VERSION 'mistune>=2' --upgrade + nltk jupyterhub==$JUPYTERHUB_VERSION statsmodels==$STATSMODELS_VERSION nbconvert==$NBCONVERT_VERSION pandas==$PANDAS_VERSION 'mistune>=2' --upgrade && \ + pip cache purge # jupyterlab_rise must be below 0.40.0 while jupyterlab is not > v4.0.0 RUN mamba install -c conda-forge "jupyterlab_rise<0.40.0" -y && \ diff --git a/images/datascience-notebook/test/test_r_func.R b/images/datascience-notebook/test/test_r_func.R index 1491c42d..67a8677f 100644 --- a/images/datascience-notebook/test/test_r_func.R +++ b/images/datascience-notebook/test/test_r_func.R @@ -2,7 +2,7 @@ library(testthat) ### IMPORTS HERE library(randomForest) -library(tidyverse) +suppressPackageStartupMessages(library(tidyverse)) library(markdown) library(lubridate) library(DT)