You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2020/11/30 01:40:54 UTC

[zeppelin] branch master updated: [hotfix] Fix ShinyInterpreterTest due to shiny version

This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 08f7a26  [hotfix] Fix ShinyInterpreterTest due to shiny version
08f7a26 is described below

commit 08f7a2622c6b9846b1fb7041a8af2fadb970ddba
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Sun Nov 29 21:06:54 2020 +0800

    [hotfix] Fix ShinyInterpreterTest due to shiny version
---
 testing/install_external_dependencies.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/install_external_dependencies.sh b/testing/install_external_dependencies.sh
index 67cae63..b155d1e 100755
--- a/testing/install_external_dependencies.sh
+++ b/testing/install_external_dependencies.sh
@@ -59,7 +59,7 @@ fi
 
 # Install R dependencies if R is true
 if [[ "$R" == "true" ]] ; then
-  conda install -y --quiet r-base=3 r-evaluate r-base64enc r-knitr r-ggplot2 r-irkernel r-shiny r-googlevis
+  conda install -y --quiet r-base=3 r-evaluate r-base64enc r-knitr r-ggplot2 r-irkernel r-shiny=1.5.0 r-googlevis
   R -e "IRkernel::installspec()"
   echo "R_LIBS=~/miniconda/lib/R/library" > ~/.Renviron
   echo "export R_LIBS=~/miniconda/lib/R/library" >> ~/.environ