| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.25.2 source code.tar.gz | 2022-08-18 | 778.9 kB | |
| 0.25.2 source code.zip | 2022-08-18 | 944.6 kB | |
| README.md | 2022-08-18 | 1.5 kB | |
| Totals: 3 Items | 1.7 MB | 0 | |
Release notes for v0.25.2
This is a fairly minor bug fix release.
Bug Fixes
- Removes requirements for
_TimeLimit.truncatedin info for step compatibility functions. This makes the step compatible with Envpool @arjun-kg - As the ordering of
Dictspaces matters when flattening spaces, updated the__eq__to account for the.keys()ordering. @XuehaiPan - Allows
CarRacingenvironment to be pickled. Updated all gym environments to be correctly pickled. @RedTachyon - seeding
DictandTuplespaces with integers can cause lower-specification computers to hang due to requiring 8Gb memory. Updated the seeding with integers to not require unique subseeds (subseed collisions are rare). For users that require unique subseeds for all subspaces, we recommend using a dictionary or tuple with the subseeds. @olipinski - Fixed the metaclass implementation for the new render api to allow custom environments to use metaclasses as well. @YouJiacheng
Updates
- Simplifies the step compatibility functions to make them easier to debug. Time limit wrapper with the old step API favours terminated over truncated if both are true. This is as the old done step API can only encode 3 states (cannot encode
terminated=Trueandtruncated=True) therefore we must encode to onlyterminated=Trueortruncated=True. @pseudo-rnd-thoughts - Add Swig as a dependency @kir0ul
- Add type annotation for
render_modeandmetadata@bkrl