Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolves #883 #884

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ibllib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging
import warnings

__version__ = '2.40.1'
__version__ = '2.40.2'
warnings.filterwarnings('always', category=DeprecationWarning, module='ibllib')

# if this becomes a full-blown library we should let the logging configuration to the discretion of the dev
Expand Down
2 changes: 1 addition & 1 deletion ibllib/pipes/mesoscope_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ def _run(self, rename_files=True, use_badframes=True, **kwargs):

# If applicable, save as bad_frames.npy in first raw_imaging_folder for suite2p
# badframes.mat contains QC values that do affect ROI detection (e.g. no PMT, lens artefacts)
badframes = np.array([], dtype='i8')
badframes = np.array([], dtype='uint32')
total_frames = 0
# Ensure all indices are relative to total cumulative frames
for m, collection in zip(all_meta, raw_image_collections):
Expand Down
5 changes: 4 additions & 1 deletion release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#### 2.40.1
- Bugfix: ibllib.io.sess_params.merge_params supports tasks extractors key

#### 2.40.2
- Bugfix: badframes array dtype change int8 -> uint32

## Release Note 2.39.0

### features
Expand All @@ -21,7 +24,7 @@

#### 2.39.1
- Bugfix: brainbox.metrics.single_unit.quick_unit_metrics fix for indexing of n_spike_below2
-

#### 2.39.2
- Bugfix: routing of protocol to extractor through the project repository checks that the
target is indeed an extractor class.
Expand Down
Loading