From 1c93b607d87f8f5be7d5a221f672e9eec1a13621 Mon Sep 17 00:00:00 2001 From: Pat Gunn Date: Thu, 22 Jul 2021 22:26:34 -0400 Subject: [PATCH 1/2] Dev version to 1.9.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index f8e233b27..9ab8337f3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.0 +1.9.1 From d18834feaa8d65f90720261993bd819f288c4648 Mon Sep 17 00:00:00 2001 From: Pat Gunn Date: Wed, 4 Aug 2021 17:02:45 -0400 Subject: [PATCH 2/2] Fix typo in last diff (and release) that breaks some use cases --- caiman/mmapping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caiman/mmapping.py b/caiman/mmapping.py index a7ff524c0..23c88a140 100644 --- a/caiman/mmapping.py +++ b/caiman/mmapping.py @@ -276,7 +276,7 @@ def save_portion(pars) -> int: for f in fnames: full_f = caiman.paths.fn_relocated(f) logging.debug(f"Saving portion to {full_f}") - Yr, _, T = load_memmap(full_ff) + Yr, _, T = load_memmap(full_f) Yr_tot[:, Ttot:Ttot + T] = np.ascontiguousarray(Yr[idx_start:idx_end], dtype=np.float32) + np.float32(add_to_mov) Ttot = Ttot + T