Skip to content

Commit b1dc15c

Browse files
authored
Updates to resolve CRAN comments in R-devel (#367)
* Updates to resolve CRAN comments in R-devel * drop check that is too old
1 parent 66eaee1 commit b1dc15c

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
- {os: ubuntu-22.04, r: 'oldrel-1'}
3535
- {os: ubuntu-22.04, r: 'oldrel-2'}
3636
- {os: ubuntu-22.04, r: 'oldrel-3'}
37-
- {os: ubuntu-22.04, r: 'oldrel-4'}
3837
- {os: ubuntu-20.04, r: 'release'}
3938

4039
env:

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Type: Package
33
Title: Risk Metrics to Evaluating R Packages
44
Description: Facilities for assessing R packages against a number of metrics to
55
help quantify their robustness.
6-
Version: 0.2.4.9001
6+
Version: 0.2.5
77
Authors@R: c(
88
person("R Validation Hub", role = c("aut"), email = "psi.aims.r.validation@gmail.com"),
99
person("Doug", "Kelkhoff", role = c("aut"), email = "doug.kelkhoff@gmail.com"),

R/assess_dependencies.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ get_package_dependencies <- function(name, repo){
121121
parse_dcf_dependencies <- function(path){
122122
dcf <- read.dcf(file.path(path, "DESCRIPTION"), all=TRUE)
123123
dcf <- dcf[colnames(dcf) %in% c("LinkingTo","Imports", "Depends")]
124-
dcf <- sapply(dcf, strsplit, strsplit, split=",")
124+
dcf <- sapply(dcf, strsplit, split=",")
125125
dcf <- lapply(dcf, trimws)
126126
deps <- data.frame(package=unlist(dcf),
127127
type=rep(names(dcf), sapply(dcf, length)),

cran-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## riskmetric 0.2.4
1+
## riskmetric 0.2.5
22

33
Resolved issues with CRAN checks.
44

0 commit comments

Comments
 (0)