You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SPARK-56500][R] Replace devtools to remotes in SparkR
### What changes were proposed in this pull request?
Replaces `devtools` to `remotes` which is lighter.
It does not fix CRAN related because we don't release on CRAN anymore.
### Why are the changes needed?
- A lot of usages of `devtools` in our repo is actually deprecated.
- Causes many issues like #55216#55233#55245
- It fails again because it requires another dependency.
### Does this PR introduce _any_ user-facing change?
No, dev-only.
### How was this patch tested?
Will minotior the CI.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes#55362 from HyukjinKwon/SPARK-56500.
Authored-by: Hyukjin Kwon <gurwls223@apache.org>
Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
Copy file name to clipboardExpand all lines: R/pkg/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ Once you have made your changes, please include unit tests for them and run exis
53
53
54
54
#### Generating documentation
55
55
56
-
The SparkR documentation (Rd files and HTML files) are not a part of the source repository. To generate them you can run the script `R/create-docs.sh`. This script uses `devtools`and `knitr` to generate the docs and these packages need to be installed on the machine before using the script. Also, you may need to install these [prerequisites](https://github.com/apache/spark/tree/master/docs#prerequisites). See also, `R/DOCUMENTATION.md`
56
+
The SparkR documentation (Rd files and HTML files) are not a part of the source repository. To generate them you can run the script `R/create-docs.sh`. This script uses `roxygen2`, `knitr`, and `rmarkdown` to generate the docs and these packages need to be installed on the machine before using the script. Also, you may need to install these [prerequisites](https://github.com/apache/spark/tree/master/docs#prerequisites). See also, `R/DOCUMENTATION.md`
0 commit comments