You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run build_vignettes() in my package, the function tries to install some packages. But all the mentioned packages I already have, in the same path, but not in the most recent version.
The argument dependencies = "VignetteBuilder argument is passed down, build_vignette() > install_deps() > dev_package_deps(), the last check for updates.
New versions are always installed. But, why not add a argument in build_vignettes() to update or not packages, upgrade = FALSE, that is passed to update() inside install_deps()? With this, only non installed packages will be installed, but not those already installed.
Thanks in advance.
The text was updated successfully, but these errors were encountered:
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
lockbot
locked and limited conversation to collaborators
Sep 18, 2018
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I run
build_vignettes()
in my package, the function tries to install some packages. But all the mentioned packages I already have, in the same path, but not in the most recent version.The argument
dependencies = "VignetteBuilder
argument is passed down,build_vignette() > install_deps() > dev_package_deps()
, the last check for updates.New versions are always installed. But, why not add a argument in
build_vignettes()
to update or not packages,upgrade = FALSE
, that is passed toupdate()
insideinstall_deps()
? With this, only non installed packages will be installed, but not those already installed.Thanks in advance.
The text was updated successfully, but these errors were encountered: