diff --git a/DESCRIPTION b/DESCRIPTION index deb6059..cdb6521 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -30,7 +30,6 @@ Imports: slider, tidymodels, tidyverse, - tidyr, writexl Suggests: downlit, @@ -39,7 +38,6 @@ Suggests: sessioninfo Remotes: tidyverse/dplyr, - tidyverse/tidyr, tidyverse/tidyverse Encoding: UTF-8 License: CC NC ND 3.0 diff --git a/iteration.qmd b/iteration.qmd index fac11dd..540aed4 100644 --- a/iteration.qmd +++ b/iteration.qmd @@ -26,8 +26,8 @@ Learning functional programming can easily veer into the abstract, but in this c ### Prerequisites ::: callout-important -This chapter relies on features only found in purrr 1.0.0 and dplyr 1.1.0, which are still in development. -If you want to live life on the edge you can get the dev version with `devtools::install_github(c("tidyverse/purrr", "tidyverse/dplyr"))`. +This chapter relies on features only found in dplyr 1.1.0, which is still in development. +If you want to live life on the edge you can get the dev version with `devtools::install_github(c( "tidyverse/dplyr"))`. ::: In this chapter, we'll focus on tools provided by dplyr and purrr, both core members of the tidyverse. diff --git a/regexps.qmd b/regexps.qmd index 27ccf1d..8aaf38f 100644 --- a/regexps.qmd +++ b/regexps.qmd @@ -22,11 +22,6 @@ We'll finish with a survey of other places in the tidyverse and base R where you ### Prerequisites -::: callout-important -This chapter relies on features only found in tidyr 1.3.0, which is still in development. -If you want to live on the edge, you can get the dev version with `devtools::install_github("tidyverse/tidyr")`. -::: - In this chapter, we'll use regular expression functions from stringr and tidyr, both core members of the tidyverse, as well as data from the babynames package. ```{r} diff --git a/strings.qmd b/strings.qmd index 5597b3e..2f5c4fa 100644 --- a/strings.qmd +++ b/strings.qmd @@ -21,11 +21,6 @@ We'll keep working with strings in the next chapter, where you'll learn more abo ### Prerequisites -::: callout-important -This chapter relies on features only found in tidyr 1.3.0, which is still in development. -If you want to live on the edge, you can get the dev versions with `devtools::install_github("tidyverse/tidyr")`. -::: - In this chapter, we'll use functions from the stringr package, which is part of the core tidyverse. We'll also use the babynames data since it provides some fun strings to manipulate.