File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ def rstudio_base_scripts(r_version):
11
11
12
12
# Shiny server (not the package!) seems to be the same version for all R versions
13
13
shiny_server_url = "https://download3.rstudio.org/ubuntu-14.04/x86_64/shiny-server-1.5.17.973-amd64.deb"
14
+ shiny_proxy_version = "1.1"
14
15
shiny_sha256sum = "80f1e48f6c824be7ef9c843bb7911d4981ac7e8a963e0eff823936a8b28476ee"
15
16
16
17
# RStudio server has different builds based on wether OpenSSL 3 or 1.1 is available in the base
@@ -27,6 +28,7 @@ def rstudio_base_scripts(r_version):
27
28
rstudio_openssl1_sha256sum = (
28
29
"bb88e37328c304881e60d6205d7dac145525a5c2aaaf9da26f1cb625b7d47e6e"
29
30
)
31
+ rsession_proxy_version = "2.2.0"
30
32
31
33
return [
32
34
(
@@ -57,10 +59,10 @@ def rstudio_base_scripts(r_version):
57
59
(
58
60
"${NB_USER}" ,
59
61
# Install jupyter-rsession-proxy
60
- r """
62
+ rf """
61
63
pip install --no-cache \
62
- jupyter-rsession-proxy \
63
- jupyter-shiny-proxy
64
+ jupyter-rsession-proxy== { rsession_proxy_version } \
65
+ jupyter-shiny-proxy== { shiny_proxy_version }
64
66
""" ,
65
67
),
66
68
(
You can’t perform that action at this time.
0 commit comments