ITSLeeds / pct

Get and reproduce data from the Propensity to Cycle Tool (PCT)
https://itsleeds.github.io/pct/
19 stars 10 forks source link

Remove tidyverse Suggests #123

Closed Robinlovelace closed 1 year ago

Robinlovelace commented 1 year ago

From @hadley:

Your package, pct, lists the tidyverse in either Depends, Imports, or Suggests in the DESCRIPTION file. This is a bad idea because, in short, the tidyverse is a set of packages designed for interactive data analysis, and it includes a very large number (>80) of direct and indirect dependencies, most of which your package probably doesn't use.

Instead of depending on the entire tidyverse, please import from, suggest, or depend on the packages in the tidyverse that you actually use. This will make your package faster to install and will head off potential problems down the road.

On the case!

Robinlovelace commented 1 year ago

Good suggestion and now on CRAN :tada:

hadley commented 1 year ago

Thanks!