Skip to content

Commit e3661c3

Browse files
authored
Merge pull request #3709 from SpikeInterface/prepare_release
Prepare release 0.102.1
2 parents bb0e8a4 + 6176ebb commit e3661c3

File tree

4 files changed

+59
-10
lines changed

4 files changed

+59
-10
lines changed

doc/releases/0.102.1.rst

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.. _release0.102.1:
2+
3+
SpikeInterface 0.102.1 release notes
4+
------------------------------------
5+
6+
19th February 2025
7+
8+
Minor release with bug fixes
9+
10+
core:
11+
12+
* Add parents in HTML representation and always print class name (#3700)
13+
* Add `SortingAnalyzer.set_sorting_property()/get_sorting_property()` functions (#3694)
14+
* Add `_parent` to `select_segment` classes (#3692)
15+
* Fix `chunk_size_limit` in `get_random_recording_slices` (#3691)
16+
* Fix bug in `super_zarr_open` (#3686)
17+
* Fix `si.load` for `WaveformExtarctor` (#3680)
18+
19+
sorters:
20+
21+
* Add `BaseSorter._dynamic_params()` to be to retrieve parameters dynamically (#3697)
22+
23+
continuous integration:
24+
25+
* Add `torch` to test installation (#3706)
26+
27+
testing:
28+
29+
* Test Python 3.13 (#3683)
30+
31+
Contributors:
32+
33+
* @alejoe91

doc/whatisnew.rst

Lines changed: 16 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.102.1.rst
1112
releases/0.102.0.rst
1213
releases/0.101.2.rst
1314
releases/0.101.1.rst
@@ -46,6 +47,21 @@ Release notes
4647
releases/0.9.1.rst
4748

4849

50+
Version 0.102.1
51+
===============
52+
53+
* Minor release with bug fixes
54+
55+
Version 0.102.0
56+
===============
57+
58+
* Added auto-label functions in curation module (#2918)
59+
* Refactored and improved auto-merge functions in curation module (#3435, #3601)
60+
* Added `spikeinterface.load()` function to load any SpikeInterface object (#3613, #3651)
61+
* Improved handling of time in base recording (#3509, #3623)
62+
* Multi-segment handling of motion interpolation (#3659)
63+
* Support for Numpy 2.0 and Zarr<3.0 (#3481,#3598)
64+
4965
Version 0.101.2
5066
===============
5167

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -127,16 +127,16 @@ test_core = [
127127

128128
# for github test : probeinterface and neo from master
129129
# for release we need pypi, so this need to be commented
130-
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
131-
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
130+
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
131+
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
132132
]
133133

134134
test_extractors = [
135135
# Functions to download data in neo test suite
136136
"pooch>=1.8.2",
137137
"datalad>=1.0.2",
138-
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
139-
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
138+
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
139+
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
140140
]
141141

142142
test_preprocessing = [
@@ -175,8 +175,8 @@ test = [
175175

176176
# for github test : probeinterface and neo from master
177177
# for release we need pypi, so this need to be commented
178-
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
179-
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
178+
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
179+
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
180180
]
181181

182182
docs = [
@@ -201,8 +201,8 @@ docs = [
201201
"datalad>=1.0.2",
202202

203203
# for release we need pypi, so this needs to be commented
204-
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git", # We always build from the latest version
205-
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git", # We always build from the latest version
204+
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git", # We always build from the latest version
205+
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git", # We always build from the latest version
206206

207207
]
208208

src/spikeinterface/__init__.py

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

0 commit comments

Comments
 (0)