Replies: 1 comment 2 replies
-
Thanks for reporting on this too; I can reproduce this with: library(future)
library(terra)
plan(multisession, workers = I(1))
f <- future({
head ## this is a S4 generic defined by 'terra'
terra::rast()
}, seed = TRUE)
v <- value(f) This issue was introduced in future 1.49.0 (2025-05-09), or possibly in globals 1.18.0 (2025-05-08). I'll fix. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I installed
future
from the GitHub development branch. I receive many warnings for packagesterra
,tibble
, and others when these packages are loaded in the global environment before usingfuture
. This happened whether or not both packages are used in the parallel function.Beta Was this translation helpful? Give feedback.
All reactions