Skip to content

Commit

Permalink
Update to jar naming logic
Browse files Browse the repository at this point in the history
  • Loading branch information
gregleleu committed Aug 15, 2024
1 parent 43cab48 commit 0e5ffae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: apache.sedona
Title: R Interface for Apache Sedona
Version: 1.6.0
Version: 1.6.0.900
Authors@R:
c(person(family = "Apache Sedona",
role = c("aut", "cre"),
Expand Down
4 changes: 2 additions & 2 deletions R/R/dependencies.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

spark_dependencies <- function(spark_version, scala_version, ...) {
if (spark_version[1, 1] == "3") {
spark_version <- "3.0"
spark_version <- spark_version
scala_version <- scala_version %||% "2.12"
} else {
stop("Unsupported Spark version: ", spark_version)
Expand All @@ -42,7 +42,7 @@ spark_dependencies <- function(spark_version, scala_version, ...) {
),
packages
)
cli::cli_alert_info(sprintf("Using Sedona jars versions: %s etc.", packages[1]))
cli::cli_alert_info(sprintf("Using Sedona jar version: %s", packages[1]))
}

spark_dependency(
Expand Down

0 comments on commit 0e5ffae

Please sign in to comment.