We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
use_package(min_version = FALSE)
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
usethis::use_package(package = "usethis", min_version = FALSE)
throws the following
Warning message: 'Imports' must contain valid version requirements
and writes this line to DESCRIPTION:
DESCRIPTION
usethis (>= FALSE),
while it should actually omit the version spec.
The text was updated successfully, but these errors were encountered:
it is undocumented to use ’min_version = F use_package(“usethis“) should do the trick?
’min_version = F
use_package(“usethis“)
Sorry, something went wrong.
it is undocumented to use ’min_version = F
Yup. But since TRUE is accepted, I'd also expect it handle the opposite. Makes it more friendly to script with.
TRUE
use_package(“usethis“) should do the trick?
Sure, but not the point. :)
Successfully merging a pull request may close this issue.
throws the following
and writes this line to
DESCRIPTION
:while it should actually omit the version spec.
The text was updated successfully, but these errors were encountered: