From 8b5b55732ac8a301f121eaee3bb2ed4828661197 Mon Sep 17 00:00:00 2001 From: Tim Head Date: Sat, 4 Apr 2020 15:05:00 +0200 Subject: [PATCH 1/2] Update server proxy and rsession proxy Both haven't been updated in a long time (~1yr) so we should refresh them. This brings both to the latest commit in their repos. --- repo2docker/buildpacks/_r_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repo2docker/buildpacks/_r_base.py b/repo2docker/buildpacks/_r_base.py index 8c2bbac1..f4364a81 100644 --- a/repo2docker/buildpacks/_r_base.py +++ b/repo2docker/buildpacks/_r_base.py @@ -55,8 +55,8 @@ def rstudio_base_scripts(): "${NB_USER}", # Install nbrsessionproxy r""" - pip install --no-cache-dir https://github.com/jupyterhub/jupyter-server-proxy/archive/7ac0125.zip && \ - pip install --no-cache-dir jupyter-rsession-proxy==1.0b6 && \ + pip install --no-cache-dir https://github.com/jupyterhub/jupyter-server-proxy/archive/00be53dfed8ab5a0baaf8332e3fc6bd44dc5bf1a.zip && \ + pip install --no-cache-dir https://github.com/jupyterhub/jupyter-rsession-proxy/archive/d5efed5455870556fc414f30871d0feca675a4b4.zip && \ jupyter serverextension enable jupyter_server_proxy --sys-prefix && \ jupyter nbextension install --py jupyter_server_proxy --sys-prefix && \ jupyter nbextension enable --py jupyter_server_proxy --sys-prefix From 19008783028b53353cf7eecdd7430df89cf5a6f0 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sat, 4 Apr 2020 21:36:46 +0200 Subject: [PATCH 2/2] Update repo2docker/buildpacks/_r_base.py --- repo2docker/buildpacks/_r_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo2docker/buildpacks/_r_base.py b/repo2docker/buildpacks/_r_base.py index f4364a81..9c4d9a80 100644 --- a/repo2docker/buildpacks/_r_base.py +++ b/repo2docker/buildpacks/_r_base.py @@ -55,7 +55,7 @@ def rstudio_base_scripts(): "${NB_USER}", # Install nbrsessionproxy r""" - pip install --no-cache-dir https://github.com/jupyterhub/jupyter-server-proxy/archive/00be53dfed8ab5a0baaf8332e3fc6bd44dc5bf1a.zip && \ + pip install --no-cache-dir jupyter-server-proxy==1.3.2 && \ pip install --no-cache-dir https://github.com/jupyterhub/jupyter-rsession-proxy/archive/d5efed5455870556fc414f30871d0feca675a4b4.zip && \ jupyter serverextension enable jupyter_server_proxy --sys-prefix && \ jupyter nbextension install --py jupyter_server_proxy --sys-prefix && \