Hi there, we are working on the next version of dplyr and your package was flagged in our reverse dependency checks.
dplyr::if_any() now correctly returns FALSE when there are 0 columns selected, rather than TRUE (in line with any())
This seems to have messed up your tests, which seem to expect it to return TRUE.
You'll have to take a look at this with the dev version of dplyr installed, and you may need to rework some things to make this work now.
As I was researching the issue, it seems to come from here
https://github.com/DavisVaughan/scSpatialSIM/blob/d5bbd65a56182e2acc73322505780867468343f2/R/plotting.R#L123
And seems to happen when 0 columns match "Hole Assignment", so that should give you a place to start from.
You can install dev dplyr with pak::pak("tidyverse/dplyr") to test
dplyr will be released on January 31, 2026. If you could please send an update of your package to CRAN before then, that would help us out a lot! Thanks!
Hi there, we are working on the next version of dplyr and your package was flagged in our reverse dependency checks.
dplyr::if_any()now correctly returnsFALSEwhen there are 0 columns selected, rather thanTRUE(in line withany())This seems to have messed up your tests, which seem to expect it to return
TRUE.You'll have to take a look at this with the dev version of dplyr installed, and you may need to rework some things to make this work now.
As I was researching the issue, it seems to come from here
https://github.com/DavisVaughan/scSpatialSIM/blob/d5bbd65a56182e2acc73322505780867468343f2/R/plotting.R#L123
And seems to happen when 0 columns match
"Hole Assignment", so that should give you a place to start from.You can install dev dplyr with
pak::pak("tidyverse/dplyr")to testdplyr will be released on January 31, 2026. If you could please send an update of your package to CRAN before then, that would help us out a lot! Thanks!