bsuite
bsuite copied to clipboard
Convert `np.int -> np.int32` since `np.int` is deprecated
It seems like np.int
has been deprecated in favour of either int
or np.int16/32/64/128
in numpy 1.20.
This PR fixes that error. The exact stack trace fo the error in deployed code is here.
Solves #47