File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
_delphi_utils_python/delphi_utils Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 48
48
${{ runner.os }}-r-facebook-survey-
49
49
- name : Install R dependencies
50
50
run : |
51
- if ( packageVersion("readr") != "1.4.0" ) {
51
+ if ( !require("readr") || packageVersion("readr") != "1.4.0" ) {
52
52
install.packages("devtools")
53
53
devtools::install_version("readr", version = "1.4.0")
54
54
}
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ def create_export_csv(
40
40
end_date : Optional [datetime ] = None ,
41
41
remove_null_samples : Optional [bool ] = False ,
42
42
write_empty_days : Optional [bool ] = False ,
43
+ logger : Optional [logging .Logger ] = None ,
43
44
weekly_dates = False ,
44
45
):
45
46
"""Export data in the format expected by the Delphi API.
Original file line number Diff line number Diff line change @@ -66,7 +66,8 @@ clean-archive:
66
66
install-python :
67
67
python3.8 -m venv env
68
68
source env/bin/activate && \
69
- pip install delphi-utils && \
69
+ pip install wheel && \
70
+ pip install delphi_utils && \
70
71
pip install -e delphiFacebook/python
71
72
72
73
install-R :dev
You can’t perform that action at this time.
0 commit comments