Skip to content

Commit

Permalink
try to enforce that newer R-universe pkgs are installed in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
zeileis committed Oct 18, 2024
1 parent 535e754 commit fa64768
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vignettes/quantiles.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ vignette: >
---

```{r preliminaries, echo=FALSE, message=FALSE, results="hide"}
pkg_installer <- get("install.packages")
if(!("gamlss.ggplots" %in% installed.packages()) || packageVersion("gamlss.ggplots") < "2.1-15") {
install.packages("gamlss.ggplots", repos = "https://gamlss-dev.R-universe.dev")
pkg_installer("gamlss.ggplots", repos = "https://gamlss-dev.R-universe.dev")
}
if(packageVersion("gamlss.dist") < "6.1-3") {
install.packages("gamlss.dist", repos = "https://gamlss-dev.R-universe.dev")
pkg_installer("gamlss.dist", repos = "https://gamlss-dev.R-universe.dev")
}
library("gamlss2")
Expand Down

0 comments on commit fa64768

Please sign in to comment.