From ac833a375e8cb06168d360b23d258e2778c2a88b Mon Sep 17 00:00:00 2001 From: Dan Allan Date: Mon, 1 Jul 2019 17:25:02 -0400 Subject: [PATCH 1/4] Bump JupyterLab and remove hub-extension. --- base-notebook/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index 3a118f1e..a8afeff3 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -101,9 +101,8 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \ RUN conda install --quiet --yes \ 'notebook=5.7.8' \ 'jupyterhub=1.0.0' \ - 'jupyterlab=0.35.5' && \ + 'jupyterlab=1.0.0' && \ conda clean --all -f -y && \ - 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 && \ From 20590f43eb1a607b5a4d412da5b163961050536b Mon Sep 17 00:00:00 2001 From: Min RK Date: Thu, 4 Jul 2019 14:38:05 +0200 Subject: [PATCH 2/4] jupyterlab 1.0.1 has fixed dependencies --- base-notebook/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index a8afeff3..34b610e6 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -101,7 +101,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \ RUN conda install --quiet --yes \ 'notebook=5.7.8' \ 'jupyterhub=1.0.0' \ - 'jupyterlab=1.0.0' && \ + 'jupyterlab=1.0.1' && \ conda clean --all -f -y && \ npm cache clean --force && \ jupyter notebook --generate-config && \ From 0c0601bbe6420fa1591b9f4a97517b4bbe285548 Mon Sep 17 00:00:00 2001 From: Min RK Date: Thu, 4 Jul 2019 14:38:21 +0200 Subject: [PATCH 3/4] bump ipywidgets, widget-manager for jupyterlab 1.0 --- scipy-notebook/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index 651a8b92..42f174e1 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -19,7 +19,7 @@ USER $NB_UID # use notebook-friendly backends in these images RUN conda install --quiet --yes \ 'conda-forge::blas=*=openblas' \ - 'ipywidgets=7.4*' \ + 'ipywidgets=7.5*' \ 'pandas=0.24*' \ 'numexpr=2.6*' \ 'matplotlib=3.0*' \ @@ -50,7 +50,7 @@ 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.38.1 && \ + jupyter labextension install @jupyter-widgets/jupyterlab-manager@^1.0.0 && \ jupyter labextension install jupyterlab_bokeh@0.6.3 && \ npm cache clean --force && \ rm -rf $CONDA_DIR/share/jupyter/lab/staging && \ From 7b960e47efada6e0adf3862b216c44bcf449bfaf Mon Sep 17 00:00:00 2001 From: James Brock Date: Wed, 10 Jul 2019 16:37:38 +0900 Subject: [PATCH 4/4] jupyterlab_bokeh@1.0.0, version bump from @0.6.3 --- scipy-notebook/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index 42f174e1..88dda7ec 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -51,7 +51,7 @@ RUN conda install --quiet --yes \ # 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@^1.0.0 && \ - jupyter labextension install jupyterlab_bokeh@0.6.3 && \ + jupyter labextension install jupyterlab_bokeh@1.0.0 && \ npm cache clean --force && \ rm -rf $CONDA_DIR/share/jupyter/lab/staging && \ rm -rf /home/$NB_USER/.cache/yarn && \