You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PyTest-RNG relies on RandomState, which is deprecated and now replaced by default_rng (Generator) or similar.
Unfortunately you cannot simply replace one with the other as this will break compatibility in random-number generation as well as API. For example randint is now integers.
The text was updated successfully, but these errors were encountered:
PyTest-RNG relies on
RandomState
, which is deprecated and now replaced bydefault_rng
(Generator
) or similar.Unfortunately you cannot simply replace one with the other as this will break compatibility in random-number generation as well as API. For example
randint
is nowintegers
.The text was updated successfully, but these errors were encountered: