From 432c3f0047b5dd4d50312cbaaa9497acd2415157 Mon Sep 17 00:00:00 2001 From: Chia-liang Kao Date: Fri, 9 Nov 2018 11:08:56 +0800 Subject: [PATCH] Update JupyterLab and extensions to 0.35.4 --- base-notebook/Dockerfile | 4 ++-- scipy-notebook/Dockerfile | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index 25d544ac..ba6a91a2 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -93,9 +93,9 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \ RUN conda install --quiet --yes \ 'notebook=5.7.0' \ 'jupyterhub=0.9.4' \ - 'jupyterlab=0.34.12' && \ + 'jupyterlab=0.35.4' && \ conda clean -tipsy && \ - jupyter labextension install @jupyterlab/hub-extension@^0.11.0 && \ + jupyter labextension install @jupyterlab/hub-extension@^0.12.0 && \ npm cache clean --force && \ jupyter notebook --generate-config && \ rm -rf $CONDA_DIR/share/jupyter/lab/staging && \ diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index dda55003..84b93bc0 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -50,9 +50,8 @@ RUN conda install --quiet --yes \ # Also activate ipywidgets extension for JupyterLab # Check this URL for most recent compatibilities # https://github.com/jupyter-widgets/ipywidgets/tree/master/packages/jupyterlab-manager - jupyter labextension install @jupyter-widgets/jupyterlab-manager@^0.37.0 && \ - # Pin to 0.6.2 until we can move to Lab 0.35 (jupyterlab_bokeh didn't bump to 0.7.0) - jupyter labextension install jupyterlab_bokeh@0.6.2 && \ + jupyter labextension install @jupyter-widgets/jupyterlab-manager@^0.38.1 && \ + jupyter labextension install jupyterlab_bokeh@0.6.3 && \ npm cache clean --force && \ rm -rf $CONDA_DIR/share/jupyter/lab/staging && \ rm -rf /home/$NB_USER/.cache/yarn && \