a) CRAN packages can't depend on non-CRAN packages (source). This also applies to the Suggests section.
b) If we requireNamespace("wordVectors", quietly = TRUE) within the function enrichDictionary(), checking complains that this is not declared in DESCRIPTION.
I don't see another way than to remove the function entirely.
It seems that
a) CRAN packages can't depend on non-CRAN packages (source). This also applies to the
Suggests
section.b) If we
requireNamespace("wordVectors", quietly = TRUE)
within the functionenrichDictionary()
, checking complains that this is not declared inDESCRIPTION
.I don't see another way than to remove the function entirely.