Skip to content

Releases: JostTim/timelined_array

Release 0.1.0 for numpy 2.* support

20 Mar 10:52

Choose a tag to compare

Now supports numpy 2.*

Changelog :

  • Required a change from
    def __array_wrap__(self, out_arr, context=None):
    to
    def __array_wrap__(
          self,
          out_arr,
          context=None,
          return_scalar=False,
      ):

In commit f9b1fd1 to support the addition of the new positionnal argument return_scalar to that stock numpy function. See : numpy/numpy#25409