Skip to content

Commit 9fe5186

Browse files
authored
Merge pull request jupyter#1254 from romainx/update_2021-03-17
Regular update 2021-03-17
2 parents d990a62 + d0e066e commit 9fe5186

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ALL_IMAGES:=$(ALL_STACKS)
2525

2626
# Dockerfile Linter
2727
HADOLINT="${HOME}/hadolint"
28-
HADOLINT_VERSION="v1.22.1"
28+
HADOLINT_VERSION="v1.23.0"
2929

3030
# Enable BuildKit for Docker build
3131
export DOCKER_BUILDKIT:=1

all-spark-notebook/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN conda install --quiet --yes \
2727
'r-ggplot2=3.3*' \
2828
'r-irkernel=1.1*' \
2929
'r-rcurl=1.98*' \
30-
'r-sparklyr=1.5*' \
30+
'r-sparklyr=1.6*' \
3131
&& \
3232
conda clean --all -f -y && \
3333
fix-permissions "${CONDA_DIR}" && \

base-notebook/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Ubuntu 20.04 (focal)
55
# https://hub.docker.com/_/ubuntu/?tab=tags&name=focal
66
# OS/ARCH: linux/amd64
7-
ARG ROOT_CONTAINER=ubuntu:focal-20210119@sha256:3093096ee188f8ff4531949b8f6115af4747ec1c58858c091c8cb4579c39cc4e
7+
ARG ROOT_CONTAINER=ubuntu:focal-20210217@sha256:e3d7ff9efd8431d9ef39a144c45992df5502c995b9ba3c53ff70c5b52a848d9c
88

99
ARG BASE_CONTAINER=$ROOT_CONTAINER
1010
FROM $BASE_CONTAINER
@@ -134,7 +134,7 @@ RUN wget --quiet "https://github.com/conda-forge/miniforge/releases/download/${m
134134
RUN conda install --quiet --yes \
135135
'notebook=6.2.0' \
136136
'jupyterhub=1.3.0' \
137-
'jupyterlab=3.0.9' && \
137+
'jupyterlab=3.0.11' && \
138138
conda clean --all -f -y && \
139139
npm cache clean --force && \
140140
jupyter notebook --generate-config && \

datascience-notebook/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ USER root
1818
# Default values can be overridden at build time
1919
# (ARGS are in lower case to distinguish them from ENV)
2020
# Check https://julialang.org/downloads/
21-
ARG julia_version="1.5.3"
21+
ARG julia_version="1.5.4"
2222
# SHA256 checksum
23-
ARG julia_checksum="f190c938dd6fed97021953240523c9db448ec0a6760b574afd4e9924ab5615f1"
23+
ARG julia_checksum="80dec351d1a593e8ad152636971a48d0c81bfcfab92c87f3604663616f1e8bc5"
2424

2525
# R pre-requisites
2626
RUN apt-get update && \
@@ -62,7 +62,7 @@ RUN conda install --quiet --yes \
6262
'r-caret=6.0*' \
6363
'r-crayon=1.4*' \
6464
'r-devtools=2.3*' \
65-
'r-forecast=8.13*' \
65+
'r-forecast=8.14*' \
6666
'r-hexbin=1.28*' \
6767
'r-htmltools=0.5*' \
6868
'r-htmlwidgets=1.5*' \

r-notebook/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN conda install --quiet --yes \
2929
'r-caret=6.*' \
3030
'r-crayon=1.4*' \
3131
'r-devtools=2.3*' \
32-
'r-forecast=8.13*' \
32+
'r-forecast=8.14*' \
3333
'r-hexbin=1.28*' \
3434
'r-htmltools=0.5*' \
3535
'r-htmlwidgets=1.5*' \

scipy-notebook/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ USER $NB_UID
1818
RUN conda install --quiet --yes \
1919
'beautifulsoup4=4.9.*' \
2020
'conda-forge::blas=*=openblas' \
21-
'bokeh=2.2.*' \
21+
'bokeh=2.3.*' \
2222
'bottleneck=1.3.*' \
2323
'cloudpickle=1.6.*' \
2424
'cython=0.29.*' \
25-
'dask=2021.2.*' \
25+
'dask=2021.3.*' \
2626
'dill=0.3.*' \
2727
'h5py=3.1.*' \
2828
'ipywidgets=7.6.*' \
2929
'ipympl=0.6.*'\
3030
'matplotlib-base=3.3.*' \
31-
'numba=0.52.*' \
31+
'numba=0.53.*' \
3232
'numexpr=2.7.*' \
3333
'pandas=1.2.*' \
3434
'patsy=0.5.*' \
@@ -38,7 +38,7 @@ RUN conda install --quiet --yes \
3838
'scikit-learn=0.24.*' \
3939
'scipy=1.6.*' \
4040
'seaborn=0.11.*' \
41-
'sqlalchemy=1.3.*' \
41+
'sqlalchemy=1.4.*' \
4242
'statsmodels=0.12.*' \
4343
'sympy=1.7.*' \
4444
'vincent=0.4.*' \

0 commit comments

Comments
 (0)