From 731299d5870232d36cd205b23da46f5c35b7ceae Mon Sep 17 00:00:00 2001 From: Pierre Chelle <45343665+pchelle@users.noreply.github.com> Date: Fri, 26 Apr 2024 15:54:58 +0200 Subject: [PATCH] Fixes #1220 install openxlsx dependency (#1221) --- .github/workflows/install_dependencies.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/install_dependencies.R b/.github/workflows/install_dependencies.R index 77c63e30..0b6879b5 100644 --- a/.github/workflows/install_dependencies.R +++ b/.github/workflows/install_dependencies.R @@ -1,4 +1,4 @@ -install.packages(c('dplyr','purrr','covr','readr','tidyr','webshot','spelling','readxl','data.table','gridtext','ggtext','tidyselect','testthat','rmarkdown','pkgdown'), repos = 'http://cran.us.r-project.org', type='win.binary') +install.packages(c('dplyr','purrr','covr','readr','tidyr','webshot','spelling','readxl','data.table','gridtext','ggtext','tidyselect','testthat','rmarkdown','pkgdown','openxlsx'), repos = 'http://cran.us.r-project.org', type='win.binary') install.packages('https://github.com/Open-Systems-Pharmacology/rClr/releases/download/v0.9.1/rClr_0.9.1.zip', repos = NULL, type = 'binary') download.file('https://ci.appveyor.com/api/projects/open-systems-pharmacology-ci/ospsuite-rutils/artifacts/ospsuite.utils.zip?pr=false', destfile = 'ospsuite.utils.zip', mode='wb') install.packages('ospsuite.utils.zip', repos = NULL, type = 'binary')