Skip to content

Commit 82a7224

Browse files
authored
Merge pull request #1939 from cmu-delphi/release/indicators_v0.3.52_utils_v0.3.22
Release covidcast-indicators 0.3.52
2 parents 341657f + 4db2cce commit 82a7224

File tree

10 files changed

+13
-10
lines changed

10 files changed

+13
-10
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.51
2+
current_version = 0.3.52
33
commit = True
44
message = chore: bump covidcast-indicators to {new_version}
55
tag = False

changehc/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.51
1+
current_version = 0.3.52

claims_hosp/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.51
1+
current_version = 0.3.52

doctor_visits/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.51
1+
current_version = 0.3.52

google_symptoms/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.51
1+
current_version = 0.3.52

hhs_hosp/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.51
1+
current_version = 0.3.52

nchs_mortality/delphi_nchs_mortality/pull.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ def pull_nchs_mortality_data(token: str, test_file: Optional[str]=None):
127127
geocode_col="state", dropna=False)
128128
df = gmpr.add_geocode(df, "state_name", "state_id",
129129
from_col="state", new_col="geo_id", dropna=False)
130-
# Manually set geo_id for national data
130+
# Manually set geo_id and population for national data
131+
national_pop = gmpr.get_crosswalk("nation", "pop")
132+
us_pop = national_pop.loc[national_pop["nation"] == "us"]["pop"][0]
133+
df.loc[df["state"] == "United States", "population"] = us_pop
131134
df.loc[df["state"] == "United States", "geo_id"] = "us"
132135
return df[keep_columns]

nchs_mortality/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.51
1+
current_version = 0.3.52

quidel_covidtest/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.51
1+
current_version = 0.3.52

sir_complainsalot/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.51
1+
current_version = 0.3.52

0 commit comments

Comments
 (0)