Closed HenrikBengtsson closed 1 year ago
Thanks @HenrikBengtsson for the reminder. Unfortunately, due to my employer's open-source policies, I am currently blocked from contributing to this project and sadly will have to retire it.
Oh my, wicked. I'm sorry to hear.
Are you allowed to accept a PR (click Merge) if I do one, or is that also against your contract with them? I hate to see FOSS projects with lots of invested time to go to waste for no good reasons like this.
Alternatively to retiring this project, you could also reach out to the R community and ask if someone wants to take over as it as a new maintainer. This happened to many other R packages in the past and CRAN supports transfers.
Unfortunately, I am also restricted from merging PR, and yes, probably finding a new maintainer would be the best option to keep this project alive.
Hi, have you had any chance to think about an alternative package maintainer. I hate for your package to be removed from CRAN, because you are not allowed to submit an updated version yourself.
Friendly reminder; 'multiprocess' has been deprecated since 2020-10-30.
FYI, future 1.32.0, which makes multiprocess
defunct, is now on CRAN.
An update and a follow-up here: future::multiprocess
has been deprecated since October 2020, and defunct since March 2023. It will soon be removed from future. When that happens, your package will break (see below). If this doesn't get fixed, your package probably fall of CRAN at some point.
Namespace in Imports field not imported from: ‘forecastHybrid’
All declared Imports should be used.
Missing or unexported object: ‘future::multiprocess’
Looks like you figured out a way for updating the package.
Hi.
This is a friendly reminder that
plan(multiprocess)
of the future package is deprecated since future 1.20.0 (2020-11-03). It will eventually become defunct and removed. The background for this can be found in https://github.com/HenrikBengtsson/future/issues/420.Your TSstudio package relies on
multiprocess
, cf. https://github.com/RamiKrispin/TSstudio/search?q=multiprocess.Please migrate your code to the platform-independent
plan(multisession)
or the Linux/macOS-specificplan(multicore)
. If you want to emulate whatmultiprocess
does, you can do something like:BTW, if you don't already do so, please make sure to undo any
plan()
you set in your code, as illustrated by the above example. This is needed to guarantee that calling your code won't override settings that the user has set previously. You can read about this in https://future.futureverse.org/reference/plan.html#for-package-developers.Thank you,
Henrik (maintainer of the future package)