Skip to content

Another CRAN release needed: not compatible with arrow #391

@rorynolan

Description

@rorynolan

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions