Skip to content
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.

Commit

Permalink
ref: bump dclab from 0.14.7 to 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Oct 21, 2019
1 parent a924c16 commit 439ca81
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.9.7
- docs: minor update
- setup: bump dclab from 0.14.7 to 0.15.0
0.9.6
- enh: improved support for tdms data (dclab 0.12.0 -> 0.14.7) (e.g. #249)
- enh: write Shape-Out version to exported .fcs and .tsv files (#250)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
],
},
install_requires=["appdirs",
"dclab[all]>=0.14.6",
"dclab[all]>=0.15.0",
"fcswrite>=0.5.0",
"h5py>=2.8.0",
"imageio>=2.3.0,<2.5.0",
Expand Down
4 changes: 2 additions & 2 deletions shapeout/session/rw.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def load(path, search_path="."):
if root_idx_file.exists():
with root_idx_file.open("rb") as rfd:
root_idx = np.load(rfd)
mm.filter.apply_manual_indices(root_idx)
mm.filter.apply_manual_indices(mm, root_idx)
else:
# parent doesn't exist - try again in next loop
continue
Expand Down Expand Up @@ -214,7 +214,7 @@ def save(path, rtdc_list):
mm_dict["parent key"] = p_ident
# save (possibly hidden) root filter indices instead of
# manual filter array.
root_idx = mm.filter.retrieve_manual_indices()
root_idx = mm.filter.retrieve_manual_indices(mm)
with (mmdir / "_filter_manual_root.npy").open("wb") as rffd:
np.save(rffd, root_idx)
# Use forward slash such that sessions saved on Windows
Expand Down

0 comments on commit 439ca81

Please sign in to comment.