- !58 changes the default behaviour of the `utopya_backend` `BaseModel` to also seed numpy's `np.random` default RNG and the `random` module's default RNG when setting up a model.
This makes Python simulations deterministic even in cases where an external RNG is being used; *not* having done this in the past meant that simulations would not be reproducible, which is why this is considered a *bug fix*.
The behaviour can be deactivated by setting `seed_numpy_rng` and `seed_system_rng` parameters to False.
- !59 removes redundant YAML-related code, which is now implemented in the [`yayaml` package](https://gitlab.com/blsqr/yayaml).
- !59 requires [paramspace v2.6](https://gitlab.com/blsqr/paramspace), which includes improvements, bug fixes, and (minor) breaking changes.