_fisher_sim fact variable computation uses an obsolete numpy dtype
LouisLalonde opened this issue · 2 comments
LouisLalonde commented
Line 248
fact = np.zeros(wkslimit + 1, dtype=np.float, order='F')
Should use a valid numpy float type
fact = np.zeros(wkslimit + 1, dtype=np.float32, order='F')
maclandrol commented
@LouisLalonde can you make a PR ?
maclandrol commented
close by #14