-
Notifications
You must be signed in to change notification settings - Fork 761
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remotes dependency installed twice #1086
Comments
If you use Alternatively you can artificially bump the version number in your fork of ggplot2 to be higher than the CRAN version. The assumption is that development dependencies will always have greater versions than CRAN versions. It might be worth tweaking the logic to exclude development packages from the version checking logic entirely however... |
upgrade_dependencies=FALSE worked for me On Fri, Feb 12, 2016 at 8:15 AM, Jim Hester [email protected]
|
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/ |
Using the most recent version of devtools on github, I am trying to do install_github("tdhock/animint") in which I have used the Remotes field to indicate that I would like to depend on tdhock/ggplot2 rather than the newer version of ggplot2 on CRAN: https://github.com/tdhock/animint/blob/master/DESCRIPTION#L34
devtools does install tdhock/ggplot2 first, but then also installs the CRAN version, and then fails since animint depends on ggplot2 < 2.0.
Would you please consider fixing this bug in install_github? The behavior that I expect is: only install tdhock/ggplot2 (the version specified in the Remotes field), and do NOT install ggplot2 from CRAN.
The text was updated successfully, but these errors were encountered: