This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 3fcc0f7ac142 [SPARK-47923][R] Upgrade the minimum version of `arrow` R
package to 10.0.0
3fcc0f7ac142 is described below
commit 3fcc0f7ac142756b38f66085543ca045abe76a9f
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Apr 19 19:58:15 2024 -0700
[SPARK-47923][R] Upgrade the minimum version of `arrow` R package to 10.0.0
### What changes were proposed in this pull request?
This PR aims to upgrade the minimum version of `arrow` R package to 10.0.0
like PySpark.
### Why are the changes needed?
Apache Spark `master` branch tests only with the latest R package which is
`15.0.1` as of now. To avoid any incompatibility issues across R and Python, we
had better use the same minimum policy.
```
$ docker run -it --rm
ghcr.io/apache/apache-spark-ci-image:master-8755911327 R -e
'installed.packages()' | grep arrow | head -n1
arrow "arrow" "/usr/local/lib/R/site-library" "15.0.1"
```
### Does this PR introduce _any_ user-facing change?
Yes, but most SparkR users has been using the latest one which is higher
than 10.0.0 because `Arrow R package 10.0.0` was released 2022-10-26 and has
been used over one and half years.
- https://cran.r-project.org/src/contrib/Archive/arrow/
### How was this patch tested?
Manual review.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #46142 from dongjoon-hyun/SPARK-47923.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
R/pkg/DESCRIPTION | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/R/pkg/DESCRIPTION b/R/pkg/DESCRIPTION
index 2523104268d3..f7dd261c10fd 100644
--- a/R/pkg/DESCRIPTION
+++ b/R/pkg/DESCRIPTION
@@ -21,7 +21,7 @@ Suggests:
testthat,
e1071,
survival,
- arrow (>= 1.0.0)
+ arrow (>= 10.0.0)
Collate:
'schema.R'
'generics.R'
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]