Skip to content

Commit

Permalink
DEV_MODE=False
Browse files Browse the repository at this point in the history
  • Loading branch information
alejoe91 committed Feb 6, 2024
1 parent dbe5e66 commit 5f1b6cb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions doc/releases/0.100.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
SpikeInterface 0.100.0 release notes
------------------------------------

5th February 2024
6th February 2024

Main changes:

Expand Down Expand Up @@ -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:

Expand Down Expand Up @@ -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:

Expand Down Expand Up @@ -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)
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
4 changes: 2 additions & 2 deletions src/spikeinterface/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5f1b6cb

Please sign in to comment.