-
Notifications
You must be signed in to change notification settings - Fork 154
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
DESCRIPTION version constraints with upper and lower bounds #764
Comments
Hmmm, after some more trial and error it seems like this syntax doesn't work at all with renv. When I tried with
Can someone confirm or deny that this type of constraint is even supported in the first place? I'm finding it difficult to get a definitive answer on this in my online searches. |
Closing in favor of #767 |
It is not supported; R and renv only support a single constraint on the package version. Note that
See pak if you want something more like an R package installer that attempts to "solve" a dependency graph with respect to versions + constraints, but note that this is relatively less common in the R universe. |
Hi @kevinushey, your assertion
is not true - see https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Package-Dependencies
|
Thanks, I wasn't aware of that. Although the wording implies that versions would have to be declared with multiple separate fields, e.g.
Either way, the truth remains that upper-level version constraints are uncommon. It also doesn't mention whether that remains true for other fields (e.g. |
@kevinushey I would maintain that upper-bound constraints may be uncommon in packages uploaded to CRAN itself, but they are likely very common for privately-maintained packages and applications. They are very common in my organization, for example. In practice they are indeed used also in I have assumed that the main purpose of |
The primary goal for Solving the dependency graph given a set of version constraints is a separate task that
|
I'm not trying to be a thorn here, but I'm not sure what you mean by "CRAN-centric workflows". If I'm writing a script or app in some environment, and I'm pulling CRAN packages into that environment, isn't that "CRAN-centric"? That's exactly Certainly The advice about getting a workspace into some "good state", by hook or by crook, is good, I agree that it's likely what we need to do until/unless better tools become available for that work. BTW, I don't think redirecting people to |
Sorry, by CRAN-centric I mean for projects that are at least in part trying to track what is "latest" on CRAN, while having a mechanism for making updates a little safer (that is, you have a private library that is in a "good" state that can be restored if you attempt to update packages and discover something is broken or incompatible with your project in some way). Version constraints could also be a similarly useful vehicle, but I think in practice even conscientious package authors who try not to break things in patch releases occasionally do so, so in the end the version constraints don't protect you as much as you might've hoped. (Many package authors also don't subscribe to semantic versioning as well) That's definitely less true in internal environments where these sorts of concerns are better managed, though.
I would describe it as maturing -- I know a lot of folks on the r-lib team are testing and using it fairly extensively internally, but I wouldn't be surprised if there are still some outstanding issues. (Note that since I'm hopeful that eventually pak and renv will be able to work together in a way where pak can be used for "general" package installation, while renv can manage other concerns (e.g. the lockfile; other relevant project-specific settings and options) |
Ah, I see - so the expectation would be that users either use a completely static set of deps, or try to track CRAN periodically. For people doing the latter, I do think it would also be very helpful to allow dependency ranges in the same way packages can specify them. If Alternatively (or additionally?) it would be good to warn users who use version criteria that they're being ignored. I know that caught our team by surprise when we found out versions we thought were prohibited were silently being used anyway. |
Definitely. Wasted a day trying to understand this issue, which could have been avoided if it was clear on this page: https://rstudio.github.io/renv/articles/packages.html |
Unfortunately this doesn't match my experience - I just downloaded the latest version of
I would very much like |
Remembering another issue with |
That is unfortunate. :-/ For what it's worth, the version of
and should (hopefully) behave better. However, I'm not sure if the specific issue you mention in r-lib/pak#119 is resolved. |
Thanks Kevin - I installed the latest from GitHub and it looks like it got past the I appreciate you taking the time to help! |
I'm using
renv::install()
command to install constrained package versions from aDESCRIPTION
file, as described by https://rstudio.github.io/renv/articles/packages.htmlAnnoyingly, it doesn't seem possible to put an upper bound on a package version if that upper bound doesn't exist. For example, I'd like to use the following in my
DESCRIPTION
file:In other words, I'm ok with any patch releases of
dplyr
, but no minor releases. However,renv::install()
doesn't seem to like this because1.1.0
doesn't exist (yet):I could alternatively set the upper bound to the latest released version of
dplyr
, but that won't necessarily include future patch releases. Is there a technical reason why the upper bound must exist for the command to succeed? This wasn't a limitation I was expecting having used package managers for other languages.Thanks in advance for your time!
The text was updated successfully, but these errors were encountered: