Skip to content

Commit db4caba

Browse files
authored
Merge pull request #1314 from cmu-delphi/release/indicators_v0.1.25_utils_v0.1.17
Release covidcast-indicators 0.1.25
2 parents f7e2d0f + 3beb15d commit db4caba

File tree

8 files changed

+14
-12
lines changed

8 files changed

+14
-12
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.1.24
2+
current_version = 0.1.25
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.1.16
2+
current_version = 0.1.17
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 .signal import add_prefix
1515
from .nancodes import Nans
1616

17-
__version__ = "0.1.16"
17+
__version__ = "0.1.17"

_delphi_utils_python/delphi_utils/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,5 @@ def transfer_files():
9595
delivery_dir = params["delivery"].get("delivery_dir", None)
9696
files_to_export = os.listdir(export_dir)
9797
for file_name in files_to_export:
98-
move(os.path.join(export_dir, file_name), delivery_dir)
98+
if file_name.endswith(".csv") or file_name.endswith(".CSV"):
99+
move(os.path.join(export_dir, file_name), delivery_dir)

_delphi_utils_python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name="delphi_utils",
28-
version="0.1.16",
28+
version="0.1.17",
2929
description="Shared Utility Functions for Indicators",
3030
long_description=long_description,
3131
long_description_content_type="text/markdown",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
"sum_anosmia_ageusia_smoothed_search",
4242
"anosmia_smoothed_search"
4343
]
44-
},
45-
"delivery": {
46-
"delivery_dir": "/common/covidcast/receiving/google-symptoms"
4744
}
45+
},
46+
"delivery": {
47+
"delivery_dir": "/common/covidcast/receiving/google-symptoms"
4848
}
4949
}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
},
1414
"chng": {
1515
"max_age": 6,
16-
"maintainers": ["U01AP8GSWG3","U01069KCRS7"]
16+
"maintainers": ["U01AP8GSWG3","U01069KCRS7"],
17+
"retired-signals": ["smoothed_outpatient_covid", "smoothed_adj_outpatient_covid", "smoothed_outpatient_cli", "smoothed_adj_outpatient_cli"]
1718
},
1819
"google-symptoms": {
1920
"max_age": 6,

google_symptoms/params.json.template

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
"sum_anosmia_ageusia_smoothed_search",
3232
"anosmia_smoothed_search"
3333
]
34-
},
35-
"delivery": {
36-
"delivery_dir": "./receiving"
3734
}
35+
},
36+
"delivery": {
37+
"delivery_dir": "./receiving"
3838
}
3939
}

0 commit comments

Comments
 (0)