Skip to content

Commit b9c6e8a

Browse files
authored
Merge branch 'main' into indicator_cdc_vaccines
2 parents 90ea653 + b5825a8 commit b9c6e8a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/r-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
${{ runner.os }}-r-facebook-survey-
4949
- name: Install R dependencies
5050
run: |
51-
if ( packageVersion("readr") != "1.4.0" ) {
51+
if ( !require("readr") || packageVersion("readr") != "1.4.0" ) {
5252
install.packages("devtools")
5353
devtools::install_version("readr", version = "1.4.0")
5454
}

_delphi_utils_python/delphi_utils/export.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def create_export_csv(
4040
end_date: Optional[datetime] = None,
4141
remove_null_samples: Optional[bool] = False,
4242
write_empty_days: Optional[bool] = False,
43+
logger: Optional[logging.Logger] = None,
4344
weekly_dates = False,
4445
):
4546
"""Export data in the format expected by the Delphi API.

facebook/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ clean-archive:
6666
install-python:
6767
python3.8 -m venv env
6868
source env/bin/activate && \
69-
pip install delphi-utils && \
69+
pip install wheel && \
70+
pip install delphi_utils && \
7071
pip install -e delphiFacebook/python
7172

7273
install-R:dev

0 commit comments

Comments
 (0)