Skip to content

Commit 2862846

Browse files
committed
Merge branch 'develop' into rms_ephysqc
2 parents bbed0e9 + c34c3dd commit 2862846

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

ibllib/ephys/np2_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def check_metadata(self):
7575
been split into shanks. If we are sets flag and prevents further processing occurring
7676
:return:
7777
"""
78-
if self.sr.meta.get(f'{self.np_version}_shank', None):
78+
if self.sr.meta.get(f'{self.np_version}_shank', None) is not None:
7979
self.already_processed = True
8080
else:
8181
self.already_processed = False

release_notes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
## Release Notes 2.1
2-
### Release Notes 2.1.0
2+
### Release Notes 2.1.0 2021-10-05
33
- destriping as pykilosort internal pre-processing
44
- NP2 probe framework for splitting shanks and LFP band
55
- Extension of task module to rerun from different locations
6+
67
## Release Notes 2.0.0
78
### Release Notes 2.0.1 2021-08-07
89
- pykilosort error handling

setup.py

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

2525
setup(
2626
name='ibllib',
27-
version='2.0.9',
27+
version='2.1.0',
2828
python_requires='>={}.{}'.format(*REQUIRED_PYTHON),
2929
description='IBL libraries',
3030
license="MIT",

0 commit comments

Comments
 (0)