Skip to content

Commit 4bbdc00

Browse files
authored
Merge pull request #12 from SpatLyu/dev
first cran submission
2 parents 6c1e75f + 5df48c6 commit 4bbdc00

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
^pkgdown$
77
^cran-comments\.md$
88
^build-vignettes\.md$
9+
^CRAN-SUBMISSION$

CRAN-SUBMISSION

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Version: 0.1
2+
Date: 2026-05-11 12:16:10 UTC
3+
SHA: 6c1e75f6e2bab1733bfb345cbd8feb6e942b0516

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- Install from [CRAN](https://CRAN.R-project.org/package=coupling) with:
2828

2929
``` r
30-
install.packages("coupling", dep = TRUE)
30+
install.packages("coupling", dependencies = TRUE)
3131
```
3232

3333
- Install binary version from [R-universe](https://stscl.r-universe.dev/coupling) with:
@@ -36,18 +36,16 @@ install.packages("coupling", dep = TRUE)
3636
install.packages("coupling",
3737
repos = c("https://stscl.r-universe.dev",
3838
"https://cloud.r-project.org"),
39-
dep = TRUE)
39+
dependencies = TRUE)
4040
```
4141

4242
- Install from source code on [GitHub](https://github.com/stscl/coupling) with:
4343

4444
``` r
45-
if (!requireNamespace("devtools")) {
46-
install.packages("devtools")
45+
if (!requireNamespace("pak", quietly = TRUE)) {
46+
install.packages("pak")
4747
}
48-
devtools::install_github("stscl/coupling",
49-
build_vignettes = TRUE,
50-
dep = TRUE)
48+
pak::pak("stscl/coupling", dependencies = TRUE)
5149
```
5250

5351
## References

0 commit comments

Comments
 (0)