Skip to content

Commit a7ce057

Browse files
committed
bump version number 2.3.0
1 parent 03fc88f commit a7ce057

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

ibllib/dsp/voltage.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ def destripe(x, fs, tr_sel=None, neuropixel_version=1, butter_kwargs=None, k_kwa
206206
x = scipy.signal.sosfiltfilt(sos, x)
207207
# apply ADC shift
208208
if neuropixel_version is not None:
209-
x = fshift(x, h['sample_shift'], axis=1)
209+
sample_shift = h['sample_shift'] if (30000 / fs) < 10 else h['sample_shift'] * fs / 30000
210+
x = fshift(x, sample_shift, axis=1)
210211
# apply spatial filter on good channel selection only
211212
x_ = kfilt(x, **k_kwargs)
212213
return x_

release_notes.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
## Develop
1+
## Release Notes 2.3
2+
### Release Notes 2.3.0 2021-11-4
23
- Add input and output signatures to all ephys tasks
34
- Add datahandler to task to download and upload data based on location where task is run
45
- Spike sorting and EphysVideoSyncQc download data on local servers if not available
56
- brainbox.io.one load_spike_sorting_fast: bugfix returns acronyms
67
- creates sequence files for spikesorting
7-
- GPU tasks have a lock - local data handler doesn't instanciate one
8+
- GPU tasks have a lock - local data handler doesn't instantiate one
9+
810

911
## Release Notes 2.2
1012
### Release Notes 2.2.1 2021-11-02

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.2.1',
27+
version='2.3.0',
2828
python_requires='>={}.{}'.format(*REQUIRED_PYTHON),
2929
description='IBL libraries',
3030
license="MIT",

0 commit comments

Comments
 (0)