Replies: 1 comment
-
yes it does.
the recommendations are now at https://r-multiverse.org/production.html. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Suppose a package is in both R-multiverse and CRAN, Which takes precedence?
install.packages()
For installing packages, we recommend the
repos
argument:If
polars
is available in both repos,install.packages()
will apparently install from the repo with the highest version of the package. In other words, if R-multiverse haspolars
1.0.0 and CRAN haspolars
2.0.0, theninstall.packages()
will install from CRAN.Staging
When it comes to checking packages, does R-universe follow the same rules? When it checks
tidypolars
in Staging, is the dependencypolars
guaranteed to come from the same universe, or could it instead pull from CRAN if CRAN has a higher version ofpolars
?Our recommendation
What do we tell companies who want to qualify and deploy snapshots of R-multiverse Production? Do we tell them to
The outcomes of these two options are very different.
Beta Was this translation helpful? Give feedback.
All reactions