Skip to content

Commit

Permalink
fixing issue 415
Browse files Browse the repository at this point in the history
bug fix in ohdsi shiny modules version check
  • Loading branch information
jreps committed Oct 11, 2023
1 parent 559c7ef commit e6a6c93
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Package: PatientLevelPrediction
Type: Package
Title: Developing patient level prediction using data in the OMOP Common Data
Model
Version: 6.3.5.9000
Date: 2023-08-15
Version: 6.3.6
Date: 2023-10-09
Authors@R: c(
person("Jenna", "Reps", email = "[email protected]", role = c("aut", "cre")),
person("Martijn", "Schuemie", role = c("aut")),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
PatientLevelPrediction 6.3.6
======================
- fix bug with ohdsi shiny modules version check (issue 415)

PatientLevelPrediction 6.3.5
======================
- Fix sklearnToJson to be compatible with scikit-learn>=1.3
Expand Down
2 changes: 1 addition & 1 deletion R/ViewShinyPlp.R
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ viewPlps <- function(databaseSettings){
)
} else{
ohdsiModulesVersion <- strsplit(x = as.character(utils::packageVersion('OhdsiShinyModules')), split = '\\.')[[1]]
if(ohdsiModulesVersion[1]>=1 & ohdsiModulesVersion[2]>= 2){
if(paste0(ohdsiModulesVersion[1], ".", ohdsiModulesVersion[2])>= 1.2){
config <- ParallelLogger::loadSettingsFromJson(
fileName = system.file(
'shinyConfigUpdate.json',
Expand Down

0 comments on commit e6a6c93

Please sign in to comment.