Skip to content

Commit

Permalink
Merge pull request #132 from mrc-ide/mrc-5481
Browse files Browse the repository at this point in the history
Use as.numeric_version in bootstrap
  • Loading branch information
plietar authored Jun 19, 2024
2 parents 1039ac1 + 332ff4e commit abeb050
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: hipercow
Title: High Performance Computing
Version: 1.0.25
Version: 1.0.26
Authors@R: c(person("Rich", "FitzJohn", role = c("aut", "cre"),
email = "[email protected]"),
person("Wes", "Hinsley", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion drivers/windows/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: hipercow.windows
Title: DIDE HPC Support for Windows
Version: 1.0.25
Version: 1.0.26
Authors@R: c(person("Rich", "FitzJohn", role = c("aut", "cre"),
email = "[email protected]"),
person("Wes", "Hinsley", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion drivers/windows/R/bootstrap.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bootstrap_update <- function(development = NULL, root = NULL) {

bootstrap_update_all <- function(development = NULL, root = NULL,
versions = r_versions()) {
versions <- recent_versions(versions)
versions <- recent_versions(as.numeric_version(versions))
for (i in seq_along(versions)) {
version <- versions[[i]]
cli::cli_alert_info("Setting up bootstrap for R {version}")
Expand Down

0 comments on commit abeb050

Please sign in to comment.