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
You are not using the Suggests package rsvg conditionally as required in §1.1.3.1 of the manual. Please check all other uses of suggested packages, and correct before Mar 22 to safely retain the package on CRAN.
And the logs of the failed part of my package is following:
It seems caused by the DiagrammeR::export_graph() calling the suggested package rsvg without using the conditional pattern recommended at CRAN manual 1.1.3.1.
if (requireNamespace("rgl", quietly=TRUE)) {
rgl::plot3d(...)
} else {
## do something else not involving rgl.
}
The text was updated successfully, but these errors were encountered:
Today, I received an email from CRAN team about my package pmap which depends on
DiagrammeR
package, the mail said:And the logs of the failed part of my package is following:
It seems caused by the
DiagrammeR::export_graph()
calling the suggested packagersvg
without using the conditional pattern recommended at CRAN manual 1.1.3.1.The text was updated successfully, but these errors were encountered: