diff --git a/doc/releases/0.100.0.rst b/doc/releases/0.100.0.rst index 9346ba885d..d39b5569da 100644 --- a/doc/releases/0.100.0.rst +++ b/doc/releases/0.100.0.rst @@ -3,7 +3,7 @@ SpikeInterface 0.100.0 release notes ------------------------------------ -5th February 2024 +6th February 2024 Main changes: @@ -57,6 +57,7 @@ core: * Zarr backcompatibility: map `root_path` to `folder_path` (#2451) * Fix spikes generation on borders (#2453) * Zarr IO for `Templates` object (#2423) +* Avoid double parsing in Plexon (#2459) extractors: @@ -86,7 +87,7 @@ preprocessing: * Faster Gaussian filter implementation preprocessing (#2420) * Faster unpickling of ZScoreRecording (#2431) * Add bit depth compensation to unsigned_to_signed (#2438) -* Renaming: `GaussianBandpassFilter` -> `GaussianFilter` (and option for low/high pass filter) (#2397) +* Renaming: `GaussianBandpassFilter` -> `GaussianFilter` (and option for low/high pass filter) (#2397, #2466) sorters: @@ -153,5 +154,5 @@ docs: ci / packaging / tests: * Add tests for unique names in channel slice and unit selection (#2258) -* Add from `__future__` import annotations to core files (#2340) +* Add from `__future__` import annotations to all files for Python3.8 (#2340, #2468) * Add pickling test to streamers (#2170) diff --git a/pyproject.toml b/pyproject.toml index 5ff2474172..a3384a5482 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -119,8 +119,8 @@ test_core = [ # for github test : probeinterface and neo from master # for release we need pypi, so this need to be commented - "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git", - "neo @ git+https://github.com/NeuralEnsemble/python-neo.git", + # "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git", + # "neo @ git+https://github.com/NeuralEnsemble/python-neo.git", ] test = [ diff --git a/src/spikeinterface/__init__.py b/src/spikeinterface/__init__.py index 306c12d516..97fb95b623 100644 --- a/src/spikeinterface/__init__.py +++ b/src/spikeinterface/__init__.py @@ -30,5 +30,5 @@ # This flag must be set to False for release # This avoids using versioning that contains ".dev0" (and this is a better choice) # This is mainly useful when using run_sorter in a container and spikeinterface install -DEV_MODE = True -# DEV_MODE = False +# DEV_MODE = True +DEV_MODE = False