-
-
Notifications
You must be signed in to change notification settings - Fork 24
CRAN 1.0.1 #671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CRAN 1.0.1 #671
Conversation
Running revdepcheck locally
|
Sent to winbuilder
|
Is anyone able to reproduce these issues? I have R 4.5.0 on windows and everything is working fine... https://win-builder.r-project.org/95JM4QBwX887/00check.log @rempsyc most of these ( @strengejacke the rest are related to |
[skip]
I had this restarting warning, too, it was due to a call to |
Strange, I have no issues locally, too. And on GitHub, tests also pass. |
There are no
Should we wait a few days, see if winbuilder gets the updated parameters? |
I'm on vacation until Friday, so I won't be able to investigate further. You can also just try to submit? |
I cannot replicate this on R version 4.5.0 on Windows 11 with Do you get these errors reliably Mattan? I also don't see these errors on the CRAN failings... so maybe fine? 😬 sorry for these troubles |
The warning message "restarting interrupted promise evaluation" in R package testing typically arises when an error occurs during the evaluation of a promise (a delayed computation), and R attempts to re-evaluate that promise later. Here's a breakdown of what's happening and why it's a warning: Understanding Promises:
What Causes the Warning: The warning usually appears in scenarios like this:
Why is it a Warning?
Common Scenarios Where You Might See This Warning in Package Testing:
What to Do When You See This Warning During Package Testing:
In summary, the "restarting interrupted promise evaluation" warning in R package testing signals that an error occurred during the evaluation of a delayed computation, and R is attempting to evaluate it again. It's a sign that you should investigate your code and tests to ensure proper error handling and prevent potential issues arising from the re-evaluation of failed promises. |
Is anyone able to even locate where the warning is happening? |
Sadly no |
lol, I guess Daniel knows what he's talking about ("You can also just try to submit?") |
Closes #670