Farama-Foundation / SuperSuit

A collection of wrappers for Gymnasium and PettingZoo environments (being merged into gymnasium.wrappers and pettingzoo.wrappers
Other
441 stars 56 forks source link

fix: np.equal in test #202

Closed younik closed 1 year ago

younik commented 1 year ago

Using np.equal in tests gives TypeError: No loop matching the specified signature and casting was found for ufunc equal with numpy 1.24. This changes it with np.array_equal instead.

WillDudley commented 1 year ago

thanks for the PR!