You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2023/11/07 07:01:55 UTC

(sedona) 01/01: Pin sparklyr to a specific version

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

jiayu pushed a commit to branch fix-failed-R-test
in repository https://gitbox.apache.org/repos/asf/sedona.git

commit 1e840ae4c1db9df983206ee5224a174585e89dbd
Author: Jia Yu <ji...@apache.org>
AuthorDate: Mon Nov 6 23:01:45 2023 -0800

    Pin sparklyr to a specific version
---
 .github/workflows/scripts/install_r_deps.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/scripts/install_r_deps.sh b/.github/workflows/scripts/install_r_deps.sh
index 9d09f0ebb..eae28c35f 100755
--- a/.github/workflows/scripts/install_r_deps.sh
+++ b/.github/workflows/scripts/install_r_deps.sh
@@ -32,5 +32,5 @@ R_REMOTES_NO_ERRORS_FROM_WARNINGS=true Rscript - <<_RSCRIPT_EOF_
     if (!require(pkg, character.only = TRUE))
       install.packages(pkg)
 
-  remotes::install_github("sparklyr/sparklyr", ref = "main", upgrade = TRUE)
+  remotes::install_github("sparklyr/sparklyr@v1.8.3", upgrade = TRUE)
 _RSCRIPT_EOF_