Skip to content

Commit 55aeec8

Browse files
committed
Merge branch 'nancodes' into nans_chng
2 parents 474e148 + e07d9cb commit 55aeec8

Some content is hidden

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

47 files changed

+949
-676
lines changed

.bumpversion.cfg

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

.github/workflows/build-container-images.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
packages: [ "" ]
12+
packages: [ facebook ]
1313
steps:
1414
- name: Checkout code
1515
uses: actions/checkout@v2

_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.1.10
2+
current_version = 0.1.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
@@ -14,4 +14,4 @@
1414
from .signal import add_prefix
1515
from .nancodes import Nans
1616

17-
__version__ = "0.1.10"
17+
__version__ = "0.1.12"

_delphi_utils_python/delphi_utils/archive.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def diff_exports(self) -> Tuple[Files, FileDiffMap, Files]:
265265
for deleted_file in deleted_files:
266266
deleted_df = pd.read_csv(deleted_file, dtype=export_csv_dtypes)
267267
print(
268-
f"Diff has deleted {deleted_file}; generating a CSV with corresponding deleted rows."
268+
f"Diff deleted {deleted_file}; generating corresponding CSV with deleted rows."
269269
)
270270
deleted_df[["val", "se", "sample_size"]] = np.nan
271271
deleted_df[["missing_val", "missing_se", "missing_sample_size"]] = Nans.DELETED

0 commit comments

Comments
 (0)