Skip to content

Commit

Permalink
Update _base_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Routhleck committed Jan 20, 2025
1 parent 1600162 commit e7a43d4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion brainunit/_base_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,12 @@ def test_numpy_functions_indices(self):
units = [volt, second, siemens, mV, kHz]

# numpy functions
keep_dim_funcs = [np.argmin, np.argmax, np.argsort, np.nonzero]
keep_dim_funcs = [
np.argmin,
np.argmax,
# np.argsort, # TODO: after upgrading jax 0.5.0, argsort will raise an error
np.nonzero
]

for value, unit in itertools.product(values, units):
q_ar = value * unit
Expand Down

0 comments on commit e7a43d4

Please sign in to comment.