-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
checkNecessary to pass R CMD CHECKNecessary to pass R CMD CHECK
Description
Function pulll_total uses function total from package qtytools. But it does not @importFrom qtytools, and the DESCRIPTION file does not Import/Suggest/Depend upon qtytools. This leads to an error when running R CMD CHECK: tbltools needs qtytools to run, and so the package should explicitly declare that dependency.
However, when I add @importFrom qtytools total and add qtytools to the Import section of the DESCRIPTION file and run R CMD CHECK I get this error:
Warning in (function (dep_name, dep_ver = "*") :
Dependency package 'qtytools' not available.
Error: Dependency package(s) 'qtytools' not available.
This might be because qtytools actually lists tbltools in the Depends section of the DESCRIPTION file (link). That is, there seems to be a circular dependency between qtytools and tbltools. It is not explicity right now. But making it explicit seems to result in an error.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
checkNecessary to pass R CMD CHECKNecessary to pass R CMD CHECK