kmrd
kmrd copied to clipboard
change np.int to np.int_ to fix attributeError in Numpy>=1.23
Since Numpy's 1.20 update, numpy.int has been deprecated, and since 1.24 it has been removed.
In later versions, using numpy.int as-is raises an AttributeError, so I've modified the data type accordingly.