Skip to content

Commit

Permalink
bump version number 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oliche committed Nov 4, 2021
1 parent 03fc88f commit a7ce057
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion ibllib/dsp/voltage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down
6 changes: 4 additions & 2 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a7ce057

Please sign in to comment.