-
Notifications
You must be signed in to change notification settings - Fork 9
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
Update DESCRIPTION #91
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good--just one small question about covidCast
Description: Versioned Data for COVID-19 | ||
License: MIT | ||
Imports: | ||
dplyr, tibble, tidyr, MMWRweek, lubridate, purrr, magrittr, xml2, rvest, RSocrata, here, httr | ||
dplyr, here, httr, lubridate, magrittr, MMWRweek, purrr, readr, RSocrata, rvest, tibble, tidyr, xml2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alphabetized dependencies! ✨
@@ -21,7 +21,7 @@ jobs: | |||
key: r-${{ hashFiles('DESCRIPTION') }} | |||
- name: Install dependencies | |||
run: | | |||
install.packages(c("remotes","devtools","readr","covidcast")) | |||
install.packages(c("remotes","devtools","covidcast")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is covidcast
also something that should be listed in the "imports" section of the DESCRIPTION (vs "suggests")?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some thoughts:
- People could happily use this package without using any functionality that requires covidcast, so i'd rather not require installation of that package...?
- however, we should probably check for whether that package is installed before trying to use it, which I bet we don't right now. i'd move to file a separate issue for that.
Seem reasonable?
No description provided.