Mark Histed

Results 5 comments of Mark Histed

Versions: (Pdb) neo.__version__ '0.10.0' (Pdb) np.__version__ '1.23.1' (Pdb) sys.version '3.8.10 | packaged by conda-forge | (default, May 10 2021, 22:58:09) \n[Clang 11.1.0 ]'

I am pretty sure my file passed our test suite about a year ago with an older neo version, so I assumed this was due to a neo change, but...

Looks to me like the issue is a change in Numpy that changed how indexing works: https://github.com/numpy/numpy/releases > Multidimensional indexing with non-tuple values is not allowed. > Previously, code such...

Indeed if I change the code in blackrockrawio.py to ```python for i in np.unique(ev_ids): mask = tuple([ev_ids == i]) curr_data = data[mask] ``` it works. Looks like this change was...