Skip to content

Remove usage of furrr::future_pmap_raw() #15

@DavisVaughan

Description

@DavisVaughan

Hi, we are planning to remove all of the *_raw() functions from furrr to align with the fact that they are deprecated in purrr as of purrr 1.0.0 futureverse/furrr#298

It looks like crossmap is the only package using one of these:

furrr::future_pmap_raw(

It looks like you could just move this function to the defunct stage, or go ahead and remove it entirely

And possibly go ahead and do the same thing with xmap_raw() to make our lives easier on the purrr side? That would be great too.

crossmap/R/xmap.R

Lines 119 to 122 in 9805f64

xmap_raw <- function(.l, .f, ...) {
lifecycle::deprecate_warn("0.4.0", "xmap_raw()", "xmap_vec()")
purrr::pmap_raw(cross_list(.l), .f, ...)
}

Thank you! We'll probably do a furrr release in around two weeks or so.

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