Skip to content

Commit 3f00546

Browse files
authored
Merge pull request #2144 from cmu-delphi/release/indicators_v0.3.63_utils_v0.3.27
Release covidcast-indicators 0.3.63
2 parents 6215462 + 061eaaf commit 3f00546

File tree

18 files changed

+183
-41
lines changed

18 files changed

+183
-41
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.62
2+
current_version = 0.3.63
33
commit = True
44
message = chore: bump covidcast-indicators to {new_version}
55
tag = False

.github/workflows/json-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
if: github.event.pull_request.draft == false
1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-latest
1616
if: github.event.pull_request.draft == false
1717
strategy:
1818
matrix:

changehc/version.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.62
1+
current_version = 0.3.63

claims_hosp/version.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.62
1+
current_version = 0.3.63

doctor_visits/version.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.62
1+
current_version = 0.3.63

google_symptoms/version.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.62
1+
current_version = 0.3.63

hhs_hosp/version.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.62
1+
current_version = 0.3.63

nchs_mortality/version.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.62
1+
current_version = 0.3.63

nssp/delphi_nssp/run.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,13 @@ def run_module(params, logger=None):
144144
missing_cols = set(CSV_COLS) - set(df.columns)
145145
df = add_needed_columns(df, col_names=list(missing_cols))
146146
df_csv = df[CSV_COLS + ["timestamp"]]
147+
148+
# remove rows with missing values
149+
df_csv = df_csv[df_csv["val"].notnull()]
150+
if df_csv.empty:
151+
logger.warning("No data for signal and geo combination", signal=signal, geo=geo)
152+
continue
153+
147154
# actual export
148155
dates = create_export_csv(
149156
df_csv,

0 commit comments

Comments
 (0)