Skip to content

Commit

Permalink
Merge pull request #89 from InseeFr/corr_packageVersion
Browse files Browse the repository at this point in the history
Correction packageVersion en character
  • Loading branch information
ThomasLaurentInsee authored Jul 18, 2023
2 parents d9eb358 + 5af2ed8 commit b4b5d65
Show file tree
Hide file tree
Showing 2 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,7 +1,7 @@
Package: disaggR
Type: Package
Title: Two-Steps Benchmarks for Time Series Disaggregation
Version: 1.0.5
Version: 1.0.5.1
Authors@R:
c(person(given = "Arnaud",
family = "Feldmann",
Expand Down
4 changes: 2 additions & 2 deletions R/reView.R
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ reView_server <- function(old_bn,hfserie_name,lfserie_name,compare) {
#' @importFrom utils packageVersion
runapp_reView <- function(old_bn,hfserie_name,lfserie_name,compare) {
if (!requireNamespace("shiny", quietly = TRUE) ||
packageVersion("shiny") < 1.5) {
packageVersion("shiny") < "1.5") {
stop("In order to use the reView shiny app, shiny >= 1.5.0 is needed.\n",
"Please run install.packages(\"shiny\")",
call. = FALSE)
Expand Down Expand Up @@ -1221,7 +1221,7 @@ rePort.reViewOutput <- function(object, output_file = NULL,
lfserie_name = NULL,
...) {
if (!requireNamespace("rmarkdown", quietly = TRUE) ||
packageVersion("rmarkdown") < 2.0) {
packageVersion("rmarkdown") < "2.0") {
stop("In order to use the rePort function, rmarkdown >= 2.0.0 is needed.\n",
"Please run install.packages(\"rmarkdown\")",
call. = FALSE)
Expand Down

1 comment on commit b4b5d65

@arnaud-feldmann
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.