Open
Description
ggplot2
and pkgload
have been updated since the last binary was build for oldrelease
(v3.6
). Calling remotes::remotes::install_deps()
on a package that requires ggplot2
and/or pkgload
, causes the source version to be installed as the source version has a higher number. This is expected.
I would like for options(install.packages.check.source = "no")
to have effect on how packages are installed. This will greatly help how GitHub Actions install packages on older R versions where the source version is typically newer but is not possible to compile locally.
Example on Windows with R v3.6:
- Setting
options(install.packages.check.source = "no")
: https://github.com/ggobi/ggally/pull/356/checks?check_run_id=727940170#step:8:2 - Validating the source version is higher: https://github.com/ggobi/ggally/pull/356/checks?check_run_id=727940170#step:8:129
- (Unexpected) Installing source version: https://github.com/ggobi/ggally/pull/356/checks?check_run_id=727940170#step:8:789
cc @cpsievert