Skip to content

Commit

Permalink
update tridesclous and probeinterface version after release
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelgarcia committed May 21, 2021
1 parent 5a36b6b commit 9f48355
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ numpy
neo
joblib
tqdm
probeinterface
probeinterface>=0.2.3
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ datalad
pyqt5
hdbscan
loky
tridesclous>=1.6.2
tridesclous>=1.6.3

# shybrid
shybrid
Expand Down
2 changes: 1 addition & 1 deletion spikeinterface/core/numpyextractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def __init__(self, units_dict):
BaseSortingSegment.__init__(self)
for unit_id, times in units_dict.items():
assert times.dtype.kind == 'i', 'numpy array of spike times must be integer'
assert np.all(np.diff(times)), 'unsorted times'
assert np.all(np.diff(times) >= 0), 'unsorted times'
self._units_dict = units_dict

def get_unit_spike_train(self, unit_id, start_frame, end_frame):
Expand Down

0 comments on commit 9f48355

Please sign in to comment.