Skip to content

Release covidcast-indicators 0.3.64 #2150

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

Open
wants to merge 5 commits into
base: prod
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.63
current_version = 0.3.64
commit = True
message = chore: bump covidcast-indicators to {new_version}
tag = False
6 changes: 5 additions & 1 deletion ansible/templates/sir_complainsalot-params-prod.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@
},
"nssp": {
"max_age":19,
"maintainers": []
"maintainers": [],
"retired-signals": [
"pct_ed_visits_combined",
"smoothed_pct_ed_visits_combined"
]
},
"nhsn": {
"max_age":19,
Expand Down
2 changes: 1 addition & 1 deletion changehc/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64
2 changes: 1 addition & 1 deletion claims_hosp/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64
2 changes: 1 addition & 1 deletion doctor_visits/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64
2 changes: 1 addition & 1 deletion google_symptoms/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64
2 changes: 1 addition & 1 deletion hhs_hosp/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64
2 changes: 1 addition & 1 deletion nchs_mortality/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64
2 changes: 0 additions & 2 deletions nssp/delphi_nssp/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@
"percent_visits_covid": "pct_ed_visits_covid",
"percent_visits_influenza": "pct_ed_visits_influenza",
"percent_visits_rsv": "pct_ed_visits_rsv",
"percent_visits_combined": "pct_ed_visits_combined",
"percent_visits_smoothed_covid": "smoothed_pct_ed_visits_covid",
"percent_visits_smoothed_1": "smoothed_pct_ed_visits_influenza",
"percent_visits_smoothed_rsv": "smoothed_pct_ed_visits_rsv",
"percent_visits_smoothed": "smoothed_pct_ed_visits_combined",
}

SIGNALS = [val for (key, val) in SIGNALS_MAP.items()]
Expand Down
12 changes: 6 additions & 6 deletions nssp/tests/test_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,14 +259,14 @@ def test_full_patch_code(self, mock_read_params, mock_get_structured_logger):

# Make sure issue_20210103 has latest weekly data (data from 20210109 instead of 20210108)
df_20210108 = pd.read_csv('source_dir/20210108.csv.gz')
df_20210108_nation_combined = df_20210108['percent_visits_combined'].iloc[0]
df_20210108_nation_covid = df_20210108['percent_visits_covid'].iloc[0]
df_20210109 = pd.read_csv('source_dir/20210109.csv.gz')
df_20210109_nation_combined = df_20210109['percent_visits_combined'].iloc[0]
assert df_20210108_nation_combined != df_20210109_nation_combined
df_20210109_nation_covid = df_20210109['percent_visits_covid'].iloc[0]
assert df_20210108_nation_covid != df_20210109_nation_covid

df_issue_20210103 = pd.read_csv('patch_dir/issue_20210103/nssp/weekly_202040_nation_pct_ed_visits_combined.csv')
df_issue_20210103_nation_combined = df_issue_20210103['val'].iloc[0]
assert df_20210109_nation_combined == df_issue_20210103_nation_combined
df_issue_20210103 = pd.read_csv('patch_dir/issue_20210103/nssp/weekly_202040_nation_pct_ed_visits_covid.csv')
df_issue_20210103_nation_covid = df_issue_20210103['val'].iloc[0]
assert df_20210109_nation_covid == df_issue_20210103_nation_covid

# Clean up the created directories after the test
shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"])
2 changes: 1 addition & 1 deletion nssp/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64
2 changes: 1 addition & 1 deletion quidel_covidtest/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64
6 changes: 5 additions & 1 deletion sir_complainsalot/params.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@
},
"nssp": {
"max_age":19,
"maintainers": []
"maintainers": [],
"retired-signals": [
"pct_ed_visits_combined",
"smoothed_pct_ed_visits_combined"
]
}
}
}
2 changes: 1 addition & 1 deletion sir_complainsalot/version.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
current_version = 0.3.63
current_version = 0.3.64