Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ByteCompile: yes
Encoding: UTF-8
Depends: R (>= 3.0.0)
Imports: backports (>= 1.1.0), utils
Suggests: R6, fastmatch, data.table (>= 1.9.8), devtools, ggplot2,
Suggests: R6, fastmatch, data.table (>= 1.9.8), remotes, ggplot2,
knitr, magrittr, microbenchmark, rmarkdown, testthat (>=
3.0.4), tinytest (>= 1.1.0), tibble
License: BSD_3_clause + file LICENSE
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ For the stable release, just install the latest version from [CRAN](https://cran
install.packages("checkmate")
```

For the development version, use [devtools](https://cran.r-project.org/package=devtools):
For the development version, use [remotes](https://cran.r-project.org/package=remotes):

```r
devtools::install_github("mllg/checkmate")
remotes::install_github("mllg/checkmate")
```

## Resources
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test_include.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ context("registered c functions")
test_that("include of registered C functions works", {
skip_on_cran()
skip_on_travis()
devtools::install_github("mllg/checkmate-test-include")
remotes::install_github("mllg/checkmate-test-include")
library(checkmate.test.include)

expect_true(reexported_qtest(1, "N1"))
Expand Down
Loading