twolodzko / kernelboot

Smoothed bootstrap and functions for sampling from kernel densities
3 stars 1 forks source link

future_lapply(): Please use future_lapply() of the future.apply package #3

Closed HenrikBengtsson closed 6 years ago

HenrikBengtsson commented 6 years ago

Hi, future 1.7.0 is now on CRAN and I'm now starting the process of deprecating the usage future::future_lapply(), which has moved to the future.apply package. Please upgrade your code to use:

importFrom(future.apply, future_lapply)

or

future.apply::future_lapply()

This should be a straightforward update without any surprises.

In the next release of the future package, future::future_lapply() will produce a formal "deprecated" warning and in the release after that it will produce a "defunct" error.

twolodzko commented 6 years ago

Thanks for the notice, I'll adapt my code.