-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Description
The pryr package has been archived from CRAN and has been superseded. I think there are only two locations where pryr is called.
Line 173 in 150b52d
absViaParent = pryr::partial(.makeAbsPath, parent = dirname(cfgPath))
Change to absViaParent = function(x) .makeAbsPath(x, parent = dirname(cfgPath))
Line 300 in 150b52d
printFun = pryr::partial(cat, fill = T)
Change to printFun = function(...) cat(..., fill = TRUE)
In minimal testing this works and effectively eliminates any dependency on pryr.
Reactions are currently unavailable