The current CRAN feather package is saying valid feather files are not valid because the current CRAN arrow package is ahead of it.
packageVersion("feather")
#> [1] '0.3.5'
packageVersion("arrow")
#> [1] '3.0.0'
tmp_feather <- tempfile(fileext = ".feather")
arrow::write_feather(iris, tmp_feather)
df <- arrow::read_feather(tmp_feather)
feather::read_feather(tmp_feather)
#> Error in openFeather(path): Invalid: Not a feather file
Created on 2021-01-27 by the reprex package (v1.0.0)
I can see that in the dev version here on GitHub you've already done the sensible thing and just wrapped arrow.
I think this should be released to CRAN. Happy to do this for you with your permission. Have submitted to CRAN plenty of times.
The current CRAN
featherpackage is saying valid feather files are not valid because the current CRANarrowpackage is ahead of it.Created on 2021-01-27 by the reprex package (v1.0.0)
I can see that in the dev version here on GitHub you've already done the sensible thing and just wrapped
arrow.I think this should be released to CRAN. Happy to do this for you with your permission. Have submitted to CRAN plenty of times.