Release 0.9
Major release 0.9
Version 0.9 improves real-time support around calls to the reset
function. It also changes the reset
signature to follow the newer Gymnasium
API.
⚠️ Breaking changes:
- The signature of
reset
has been updated toenv.reset(seed=None, options=None)
to comply with the newerGymnasium
API. This change also affects thereset
method ofRealTimeGymInterface
.
To update your existing implementations of RealTimeGymInterface
to the new version of rtgym
, you can simply replace
def reset(self):
by
def reset(self, seed=None, options=None):