You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When submitting a package to CRAN, the Authors@R field shouldn't contain a Maintainer field, if the Authors@R has [aut, cre].
If both are present, R CMD check --as-cran, gives this NOTE:
* checking DESCRIPTION meta-information ... NOTE
Maintainer field differs from that derived from Authors@R
Maintainer: 'First Last <[email protected]>'
Authors@R: '"First Last <[email protected]>'
The note doesn't come up when using check(), but it does come up when you use with_envvar(c("_R_CHECK_CRAN_INCOMING_"=TRUE), check()).
The text was updated successfully, but these errors were encountered:
Oh, I think made a mistake - I thought that create() was adding both the Authors@R and the Maintainer fields, but I must have added in the Maintainer myself in a package I was working on.
When submitting a package to CRAN, the
Authors@R
field shouldn't contain a Maintainer field, if the Authors@R has[aut, cre]
.If both are present,
R CMD check --as-cran
, gives this NOTE:The note doesn't come up when using
check()
, but it does come up when you usewith_envvar(c("_R_CHECK_CRAN_INCOMING_"=TRUE), check())
.The text was updated successfully, but these errors were encountered: