Skip to content

Commit 51fba8d

Browse files
authored
Merge pull request #1823 from cmu-delphi/release/indicators_v0.3.35_utils_v0.3.12
Release covidcast-indicators 0.3.35
2 parents 144ab5d + f6479f0 commit 51fba8d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+22
-119569
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.34
2+
current_version = 0.3.35
33
commit = True
44
message = chore: bump covidcast-indicators to {new_version}
55
tag = False

.github/workflows/create-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
bump2version --list ${{ github.event.inputs.versionName }} | grep ^new_version | sed -r s,"^.*=",,
6262
- name: Copy version to indicator directory
6363
run: |
64-
indicator_list=("changehc" "claims_hosp" "doctor_visits" "dsew_community_profile" "google_symptoms" "hhs_hosp" "jhu" "nchs_mortality" "nowcast" "quidel_covidtest" "sir_complainsalot")
64+
indicator_list=("changehc" "claims_hosp" "doctor_visits" "dsew_community_profile" "google_symptoms" "hhs_hosp" "nchs_mortality" "nowcast" "quidel_covidtest" "sir_complainsalot")
6565
for path in ${indicator_list[@]}; do
6666
echo "current_version = ${{ steps.indicators.outputs.version }}" > $path/version.cfg
6767
done

.github/workflows/python-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.event.pull_request.draft == false
1717
strategy:
1818
matrix:
19-
packages: [_delphi_utils_python, changehc, claims_hosp, doctor_visits, dsew_community_profile, google_symptoms, hhs_hosp, jhu, nchs_mortality, nowcast, quidel_covidtest, sir_complainsalot]
19+
packages: [_delphi_utils_python, changehc, claims_hosp, doctor_visits, dsew_community_profile, google_symptoms, hhs_hosp, nchs_mortality, nowcast, quidel_covidtest, sir_complainsalot]
2020
defaults:
2121
run:
2222
working-directory: ${{ matrix.packages }}

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- TODO: #527 Get this list automatically from python-ci.yml at runtime.
1111
*/
1212

13-
def indicator_list = ["backfill_corrections", "changehc", "claims_hosp", "google_symptoms", "hhs_hosp", "jhu", "nchs_mortality", "quidel_covidtest", "sir_complainsalot", "dsew_community_profile", "doctor_visits"]
13+
def indicator_list = ["backfill_corrections", "changehc", "claims_hosp", "google_symptoms", "hhs_hosp", "nchs_mortality", "quidel_covidtest", "sir_complainsalot", "dsew_community_profile", "doctor_visits"]
1414
def build_package_main = [:]
1515
def build_package_prod = [:]
1616
def deploy_staging = [:]

_delphi_utils_python/.bumpversion.cfg

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

_delphi_utils_python/delphi_utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
from .nancodes import Nans
1616
from .weekday import Weekday
1717

18-
__version__ = "0.3.11"
18+
__version__ = "0.3.12"

_delphi_utils_python/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"mock",
1515
"moto",
1616
"numpy",
17-
"pandas>=1.1.0",
17+
"pandas>=1.1.0,<2",
1818
"pydocstyle",
1919
"pylint==2.8.3",
2020
"pytest",
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name="delphi_utils",
29-
version="0.3.11",
29+
version="0.3.12",
3030
description="Shared Utility Functions for Indicators",
3131
long_description=long_description,
3232
long_description_content_type="text/markdown",

_delphi_utils_python/tests/test_geomap.py

+4
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,10 @@ def test_add_geocode(self, geomapper):
275275
new_data = geomapper.add_geocode(self.zip_data, "zip", "state_code")
276276
new_data2 = geomapper.add_geocode(new_data, "state_code", "nation")
277277
assert new_data2["nation"].unique()[0] == "us"
278+
new_data = geomapper.replace_geocode(self.zip_data, "zip", "state_code")
279+
new_data2 = geomapper.add_geocode(new_data, "state_code", "state_id", new_col="state")
280+
new_data3 = geomapper.replace_geocode(new_data2, "state_code", "nation", new_col="geo_id")
281+
assert "state" not in new_data3.columns
278282

279283
# state_code -> hhs
280284
new_data = geomapper.add_geocode(self.zip_data, "zip", "state_code")

ansible/templates/jhu-params-prod.json.j2

-51
This file was deleted.

ansible/templates/sir_complainsalot-params-prod.json.j2

-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@
2828
"sum_anosmia_ageusia_smoothed_search"
2929
]
3030
},
31-
"jhu-csse": {
32-
"max_age": 2,
33-
"maintainers": ["U01AP8GSWG3","U01069KCRS7"],
34-
"retired-signals": ["confirmed_7dav_cumulative_num", "confirmed_7dav_cumulative_prop", "deaths_7dav_cumulative_num", "deaths_7dav_cumulative_prop"]
35-
},
3631
"quidel": {
3732
"max_age":6,
3833
"maintainers": ["U01AP8GSWG3","U01069KCRS7"],

changehc/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.34
1+
current_version = 0.3.35

claims_hosp/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.34
1+
current_version = 0.3.35

doctor_visits/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.34
1+
current_version = 0.3.35

dsew_community_profile/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.34
1+
current_version = 0.3.35

google_symptoms/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.34
1+
current_version = 0.3.35

hhs_hosp/version.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
current_version = 0.3.34
1+
current_version = 0.3.35

jenkins/jhu-jenkins-build.sh

-21
This file was deleted.

jenkins/jhu-jenkins-deploy.sh

-18
This file was deleted.

jenkins/jhu-jenkins-package.sh

-18
This file was deleted.

jenkins/jhu-jenkins-test.sh

-23
This file was deleted.

jenkins/safegraph-jenkins-build.sh

-21
This file was deleted.

jenkins/safegraph-jenkins-test.sh

-22
This file was deleted.

0 commit comments

Comments
 (0)