Skip to content

Commit e81957f

Browse files
committed
Regular update: 2020-12-27
1 parent d113a60 commit e81957f

File tree

5 files changed

+15
-16
lines changed

5 files changed

+15
-16
lines changed

base-notebook/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ RUN wget --quiet "https://github.com/conda-forge/miniforge/releases/download/${m
131131
# Do all this in a single RUN command to avoid duplicating all of the
132132
# files across image layers when the permissions change
133133
RUN conda install --quiet --yes \
134-
'notebook=6.1.5' \
135-
'jupyterhub=1.2.2' \
136-
'jupyterlab=2.2.9' && \
134+
'notebook=6.1.6' \
135+
'jupyterhub=1.3.0' \
136+
'jupyterlab=3.0.0' && \
137137
conda clean --all -f -y && \
138138
npm cache clean --force && \
139139
jupyter notebook --generate-config && \

datascience-notebook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ RUN conda install --quiet --yes \
7070
'r-nycflights13=1.0*' \
7171
'r-randomforest=4.6*' \
7272
'r-rcurl=1.98*' \
73-
'r-rmarkdown=2.5*' \
73+
'r-rmarkdown=2.6*' \
7474
'r-rsqlite=2.2*' \
7575
'r-shiny=1.5*' \
7676
'r-tidyverse=1.3*' \

r-notebook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN conda install --quiet --yes \
3737
'r-nycflights13=1.0*' \
3838
'r-randomforest=4.6*' \
3939
'r-rcurl=1.98*' \
40-
'r-rmarkdown=2.5*' \
40+
'r-rmarkdown=2.6*' \
4141
'r-rodbc=1.3*' \
4242
'r-rsqlite=2.2*' \
4343
'r-shiny=1.5*' \

scipy-notebook/Dockerfile

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ RUN conda install --quiet --yes \
2222
'bottleneck=1.3.*' \
2323
'cloudpickle=1.6.*' \
2424
'cython=0.29.*' \
25-
'dask=2.30.*' \
25+
'dask=2020.12.*' \
2626
'dill=0.3.*' \
2727
'h5py=3.1.*' \
28-
'ipywidgets=7.5.*' \
28+
'ipywidgets=7.6.*' \
2929
'ipympl=0.5.*'\
3030
'matplotlib-base=3.3.*' \
31-
'numba=0.51.*' \
31+
'numba=0.52.*' \
3232
'numexpr=2.7.*' \
3333
'pandas=1.1.*' \
3434
'patsy=0.5.*' \
35-
'protobuf=3.13.*' \
35+
'protobuf=3.14.*' \
3636
'pytables=3.6.*' \
37-
'scikit-image=0.17.*' \
38-
'scikit-learn=0.23.*' \
37+
'scikit-image=0.18.*' \
38+
'scikit-learn=0.24.*' \
3939
'scipy=1.5.*' \
4040
'seaborn=0.11.*' \
4141
'sqlalchemy=1.3.*' \
@@ -50,10 +50,9 @@ RUN conda install --quiet --yes \
5050
jupyter nbextension enable --py widgetsnbextension --sys-prefix && \
5151
# Also activate ipywidgets extension for JupyterLab
5252
# Check this URL for most recent compatibilities
53-
# https://github.com/jupyter-widgets/ipywidgets/tree/master/packages/jupyterlab-manager
54-
jupyter labextension install @jupyter-widgets/jupyterlab-manager@^2.0.0 --no-build && \
55-
jupyter labextension install @bokeh/jupyter_bokeh@^2.0.0 --no-build && \
56-
jupyter labextension install jupyter-matplotlib@^0.7.2 --no-build && \
53+
# Not compliant with jupyterlab 3.0.x see https://github.com/bokeh/bokeh/issues/10569
54+
#jupyter labextension install @bokeh/jupyter_bokeh@^2.0.4 --no-build && \
55+
jupyter labextension install jupyter-matplotlib@^0.7.4 --no-build && \
5756
jupyter lab build -y && \
5857
jupyter lab clean -y && \
5958
npm cache clean --force && \

tensorflow-notebook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ LABEL maintainer="Jupyter Project <[email protected]>"
77

88
# Install Tensorflow
99
RUN pip install --quiet --no-cache-dir \
10-
'tensorflow==2.3.1' && \
10+
'tensorflow==2.4.0' && \
1111
fix-permissions "${CONDA_DIR}" && \
1212
fix-permissions "/home/${NB_USER}"

0 commit comments

Comments
 (0)