I am submitting my R package to CRAN, and am receiving a warning from the CRAN servers that does not appear when I run R CMD CHECK --as-cran
locally on the package tarball prior to uploading to CRAN. This causes my package to fail the automatic CRAN check.
This is the warning:
* checking DESCRIPTION meta-information ... WARNING
Dependence on R version '3.4.3' not with patchlevel 0
My DESCRIPTION file contains this line:
Depends: R (>= 3.4.3)
What does this warning mean? Thanks!