From a7ce057a57f03749fe3ca63e847cefd15c7fdddd Mon Sep 17 00:00:00 2001 From: olivier Date: Thu, 4 Nov 2021 17:43:24 +0000 Subject: [PATCH] bump version number 2.3.0 --- ibllib/dsp/voltage.py | 3 ++- release_notes.md | 6 ++++-- setup.py | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ibllib/dsp/voltage.py b/ibllib/dsp/voltage.py index cfb988ac7..c1a8de631 100644 --- a/ibllib/dsp/voltage.py +++ b/ibllib/dsp/voltage.py @@ -206,7 +206,8 @@ def destripe(x, fs, tr_sel=None, neuropixel_version=1, butter_kwargs=None, k_kwa x = scipy.signal.sosfiltfilt(sos, x) # apply ADC shift if neuropixel_version is not None: - x = fshift(x, h['sample_shift'], axis=1) + sample_shift = h['sample_shift'] if (30000 / fs) < 10 else h['sample_shift'] * fs / 30000 + x = fshift(x, sample_shift, axis=1) # apply spatial filter on good channel selection only x_ = kfilt(x, **k_kwargs) return x_ diff --git a/release_notes.md b/release_notes.md index 6d5097022..2a9508b5e 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,10 +1,12 @@ -## Develop +## Release Notes 2.3 +### Release Notes 2.3.0 2021-11-4 - Add input and output signatures to all ephys tasks - Add datahandler to task to download and upload data based on location where task is run - Spike sorting and EphysVideoSyncQc download data on local servers if not available - brainbox.io.one load_spike_sorting_fast: bugfix returns acronyms - creates sequence files for spikesorting -- GPU tasks have a lock - local data handler doesn't instanciate one +- GPU tasks have a lock - local data handler doesn't instantiate one + ## Release Notes 2.2 ### Release Notes 2.2.1 2021-11-02 diff --git a/setup.py b/setup.py index d41d0fac0..76a2cfa12 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name='ibllib', - version='2.2.1', + version='2.3.0', python_requires='>={}.{}'.format(*REQUIRED_PYTHON), description='IBL libraries', license="MIT",