Skip to content

Commit 8d6402b

Browse files
committed
Prepare release 0.101.2
1 parent dc1496f commit 8d6402b

4 files changed

Lines changed: 77 additions & 8 deletions

File tree

doc/releases/0.101.2.rst

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
.. _release0.101.2:
2+
3+
SpikeInterface 0.101.2 release notes
4+
------------------------------------
5+
6+
3rd October 2024
7+
8+
Minor release with bug fixes
9+
10+
core:
11+
12+
* Avoid warnings in `SortingAnalyzer` (#3455)
13+
* Fix `reset_global_job_kwargs` (#3452)
14+
* Allow to save recordingless analyzer as (#3443)
15+
* Fix compute analyzer pipeline with tmp recording (#3433)
16+
* Fix bug in saving zarr recordings (#3432)
17+
* Set `run_info` to `None` for `load_waveforms` (#3430)
18+
* Fix integer overflow in parallel computing (#3426)
19+
* Refactor `pandas` save load and `convert_dtypes` (#3412)
20+
* Add spike-train based lazy `SortingGenerator` (#2227)
21+
22+
extractors:
23+
24+
* Improve IBL recording extractors by PID (#3449)
25+
26+
sorters:
27+
28+
* Get default encoding for `Popen` (#3439)
29+
30+
postprocessing:
31+
32+
* Add `max_threads_per_process` and `mp_context` to pca by channel computation and PCA metrics (#3434)
33+
34+
widgets:
35+
36+
* Fix metrics widgets for convert_dtypes (#3417)
37+
* Fix plot motion for multi-segment (#3414)
38+
39+
motion correction:
40+
41+
* Auto-cast recording to float prior to interpolation (#3415)
42+
43+
documentation:
44+
45+
* Add docstring for `generate_unit_locations` (#3418)
46+
* Add `get_channel_locations` to the base recording API (#3403)
47+
48+
continuous integration:
49+
50+
* Enable testing arm64 Mac architecture in the CI (#3422)
51+
* Add kachery_zone secret (#3416)
52+
53+
testing:
54+
55+
* Relax causal filter tests (#3445)
56+
57+
Contributors:
58+
59+
* @alejoe91
60+
* @h-mayorquin
61+
* @jiumao2
62+
* @samuelgarcia
63+
* @zm711

doc/whatisnew.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Release notes
88
.. toctree::
99
:maxdepth: 1
1010

11+
releases/0.101.2.rst
1112
releases/0.101.1.rst
1213
releases/0.101.0.rst
1314
releases/0.100.8.rst
@@ -44,6 +45,11 @@ Release notes
4445
releases/0.9.1.rst
4546

4647

48+
Version 0.101.2
49+
===============
50+
51+
* Minor release with bug fixes
52+
4753
Version 0.101.1
4854
===============
4955

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,16 @@ test_core = [
124124

125125
# for github test : probeinterface and neo from master
126126
# for release we need pypi, so this need to be commented
127-
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
128-
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
127+
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
128+
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
129129
]
130130

131131
test_extractors = [
132132
# Functions to download data in neo test suite
133133
"pooch>=1.8.2",
134134
"datalad>=1.0.2",
135-
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
136-
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
135+
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
136+
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
137137
]
138138

139139
test_preprocessing = [
@@ -173,8 +173,8 @@ test = [
173173

174174
# for github test : probeinterface and neo from master
175175
# for release we need pypi, so this need to be commented
176-
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
177-
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
176+
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
177+
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
178178
]
179179

180180
docs = [

src/spikeinterface/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
# This flag must be set to False for release
3131
# This avoids using versioning that contains ".dev0" (and this is a better choice)
3232
# This is mainly useful when using run_sorter in a container and spikeinterface install
33-
DEV_MODE = True
34-
# DEV_MODE = False
33+
# DEV_MODE = True
34+
DEV_MODE = False

0 commit comments

Comments
 (0)