PySpectrometer icon indicating copy to clipboard operation
PySpectrometer copied to clipboard

np.int deprecated in bookworm

Open macckone opened this issue 2 years ago • 0 comments

np.int is deprecated in bookworm. we need to use np.int32.

127,128c127,128 < window_size = np.abs(np.int32(window_size)) < order = np.abs(np.int32(order)) --- > window_size = np.abs(np.int(window_size)) > order = np.abs(np.int(order))

macckone avatar Nov 07 '23 19:11 macckone