Thanks for the quick response, @nealec.
When I try to install the package versions listed in your session info, I see a few conflicts:
> pak::pak(c("tidymodels/parsnip@284252b", "tidymodels/recipes@ce1c657",
+ "tidymodels/tune@1856421", "tidymodels/workflows@9a9e231",
+ "tidymodels/yardstick@e56b69f"))
Error: Cannot install packages:
* tidymodels/tune@1856421:
* Can't install dependency tidymodels/parsnip@feature/case-weights
* Can't install dependency tidymodels/workflows
* Can't install dependency tidymodels/yardstick
* tidymodels/workflows: Conflicts with tidymodels/workflows@9a9e231
* tidymodels/yardstick: Conflicts with tidymodels/yardstick@e56b69f
* tidymodels/parsnip@feature/case-weights: Conflicts with tidymodels/parsnip@284252b
You'll indeed need to update your tidymodels package installs.
If you'd like to continue using developmental versions, the following code will update the key players:
pak::pak(c("tidymodels/parsnip", "tidymodels/recipes",
"tidymodels/tune", "tidymodels/workflows",
"tidymodels/yardstick", "tidymodels/hardhat"))