Skip to content

Commit 866813f

Browse files
authored
Merge pull request #2117 from cmu-delphi/release/indicators_v0.3.60_utils_v0.3.27
Release covidcast-indicators 0.3.60
2 parents ed89c11 + e3520f2 commit 866813f

36 files changed

+28430
-27818
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.59
2+
current_version = 0.3.60
33
commit = True
44
message = chore: bump covidcast-indicators to {new_version}
55
tag = False

_delphi_utils_python/.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.26
2+
current_version = 0.3.27
33
commit = True
44
message = chore: bump delphi_utils to {new_version}
55
tag = False

_delphi_utils_python/delphi_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
from .utils import read_params
1515
from .weekday import Weekday
1616

17-
__version__ = "0.3.26"
17+
__version__ = "0.3.27"

_delphi_utils_python/delphi_utils/export.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,5 @@ def create_backup_csv(
205205
)
206206
# pylint: disable=W0703
207207
except Exception as e:
208-
logger.info("Backup file creation failed", msg=e)
208+
if logger:
209+
logger.info("Backup file creation failed", msg=e)

_delphi_utils_python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "delphi-utils"
7-
version = "0.3.26"
7+
version = "0.3.27"
88
description = "Shared Utility Functions for Indicators"
99
readme = "README.md"
1010
requires-python = "== 3.8.*"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"s04_smoothed_search",
5353
"s05_smoothed_search",
5454
"s06_smoothed_search",
55+
"s07_smoothed_search",
5556
"scontrol_smoothed_search"
5657
]
5758
}

changehc/version.cfg

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

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.59
1+
current_version = 0.3.60

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.59
1+
current_version = 0.3.60

google_symptoms/delphi_google_symptoms/constants.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@
1111
"s02": ["Nasal congestion", "Post nasal drip", "Rhinorrhea", "Sinusitis",
1212
"Rhinitis", "Common cold"],
1313
"s03": ["Fever", "Hyperthermia", "Chills", "Shivering", "Low grade fever"],
14-
#"s04": ["Fatigue", "Weakness", "Muscle weakness", "Myalgia", "Pain"],
1514
"s04": ["Shortness of breath", "Wheeze", "Croup", "Pneumonia", "Asthma",
1615
"Crackles", "Acute bronchitis", "Bronchitis"],
1716
"s05": ["Anosmia", "Dysgeusia", "Ageusia"],
18-
#"s07": ["Nausea", "Vomiting", "Diarrhea", "Indigestion", "Abdominal pain"],
1917
"s06": ["Laryngitis", "Sore throat", "Throat irritation"],
20-
#"s09": ["Headache", "Migraine", "Cluster headache", "Dizziness", "Lightheadedness"],
21-
#"s10": ["Night sweats","Perspiration", "hyperhidrosis"],
18+
"s07": ["Conjunctivitis", "Red eye", "Epiphora", "Eye pain", "Rheum"],
2219
"scontrol": ["Type 2 diabetes", "Urinary tract infection", "Hair loss",
2320
"Candidiasis", "Weight gain"]
2421
}

0 commit comments

Comments
 (0)