Hello, in our efforts to prepare data.table for an update on CRAN (-> v1.11.0), we noticed that recent changes will break your package:
install.packages('data.table', type = 'source', repos = 'http://Rdatatable.github.io/data.table')
pkg = 'easycsv'
install.packages(pkg, dependencies = TRUE)
tools::testInstalledPackage(pkg, outDir = "~/Desktop/dt_revdep")
library(pkg, character.only = TRUE)
fn = 'fread_folder'
example(fn, character.only = TRUE)
Error: isTrueFalse(showProgress) is not TRUE
This is because the default argument of showProgress has changed to be equivalent to the output of interactive(), and the default value of getOption('datatable.showprogress') has been deleted.
Please follow Rdatatable/data.table#2785 and feel free to provide input there if you have strong opinions about how to proceed.
Note that this issue also effects your SIRItoGTFS package; I'll file an official issue there once the aforementioned pull request is resolved, if needed.
Hello, in our efforts to prepare
data.tablefor an update on CRAN (-> v1.11.0), we noticed that recent changes will break your package:This is because the default argument of
showProgresshas changed to be equivalent to the output ofinteractive(), and the default value ofgetOption('datatable.showprogress')has been deleted.Please follow Rdatatable/data.table#2785 and feel free to provide input there if you have strong opinions about how to proceed.
Note that this issue also effects your
SIRItoGTFSpackage; I'll file an official issue there once the aforementioned pull request is resolved, if needed.