On Thu, 1 Jun 2023 17:48:49 -0700
John Harrold <john.m.harr...@gmail.com> wrote:

> Am I reading that correctly that ggPMX not being found is the cause
> of my issues?

Your package got flagged by the additional test, "noSuggests", where
only the packages you have a hard dependency upon are available:
https://www.stats.ox.ac.uk/pub/bdr/noSuggests/README.txt

By default, install.packages() does not install the packages listed in
Suggests:, so it's important for your package to work even if all
packages listed there are not available. See WRE 1.1.3.1
<https://cran.r-project.org/doc/manuals/R-exts.html#Suggested-packages>
for information on how to add checks into your documentation examples /
tests / vignettes.

If ggPMX is vitally important for your package to work, move it to
Imports:, and you won't have to alter all your tests.

-- 
Best regards,
Ivan

______________________________________________
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel

Reply via email to