Now supports numpy 2.*
Changelog :
- Required a change from
python
def __array_wrap__(self, out_arr, context=None):
to
python
def __array_wrap__(
self,
out_arr,
context=None,
return_scalar=False,
):
In commit https://github.com/JostTim/timelined_array/commit/f9b1fd19ce5fb9542295b54cbe8bcf79a72ec074 to support the addition of the new positionnal argument return_scalar to that stock numpy function. See : https://github.com/numpy/numpy/pull/25409