This function detects the minimal required R version for the project based
on minimal required R version of its dependencies. It can be used to update
the Depends
field of the DESCRIPTION
file.
See also
Other utilities functions:
get_all_dependencies()
,
get_all_functions()
,
get_licenses()
Examples
if (FALSE) { # \dontrun{
## Update dependencies ----
add_dependencies()
## Minimal R version of a project ----
get_minimal_r_version()
## Minimal R version of a CRAN package ----
get_minimal_r_version("usethis")
} # }