google-deepmind / bsuite

bsuite is a collection of carefully-designed experiments that investigate core capabilities of a reinforcement learning (RL) agent
Apache License 2.0
1.51k stars 181 forks source link

Convert `np.int -> np.int32` since `np.int` is deprecated #48

Open jjshoots opened 1 year ago

jjshoots commented 1 year ago

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.

epignatelli commented 1 year ago

Solves #47