Skip to content

Commit

Permalink
Merge pull request #1939 from cmu-delphi/release/indicators_v0.3.52_u…
Browse files Browse the repository at this point in the history
…tils_v0.3.22

Release covidcast-indicators 0.3.52
  • Loading branch information
melange396 authored Jan 30, 2024
2 parents 341657f + 4db2cce commit 82a7224
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 10 deletions.
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.51
current_version = 0.3.52
commit = True
message = chore: bump covidcast-indicators to {new_version}
tag = False
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.51
current_version = 0.3.52
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.51
current_version = 0.3.52
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.51
current_version = 0.3.52
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.51
current_version = 0.3.52
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.51
current_version = 0.3.52
5 changes: 4 additions & 1 deletion nchs_mortality/delphi_nchs_mortality/pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ def pull_nchs_mortality_data(token: str, test_file: Optional[str]=None):
geocode_col="state", dropna=False)
df = gmpr.add_geocode(df, "state_name", "state_id",
from_col="state", new_col="geo_id", dropna=False)
# Manually set geo_id for national data
# Manually set geo_id and population for national data
national_pop = gmpr.get_crosswalk("nation", "pop")
us_pop = national_pop.loc[national_pop["nation"] == "us"]["pop"][0]
df.loc[df["state"] == "United States", "population"] = us_pop
df.loc[df["state"] == "United States", "geo_id"] = "us"
return df[keep_columns]
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.51
current_version = 0.3.52
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.51
current_version = 0.3.52
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.51
current_version = 0.3.52

0 comments on commit 82a7224

Please sign in to comment.