Version 2.0.0
rodrigodelazcano
released this
28 Sep 17:41
·
115 commits
to master
since this release
This release transitions the repository dependency from gym
to gymnasium
. gymnasium
is a fork of OpenAI's Gym library by the maintainers, and is where future maintenance will occur going forward. gymnasium.farama.org
What's Changed
- Migration from
gym
togymnasium
v0.26. @rodrigodelazcano - Package name change from
gym_minigrid
tominigrid
. @rodrigodelazcano - Change file structure for better comprehension. @pseudo-rnd-thoughts . The new file structure looks as follows:
- Divide
minigrid.py
into sub-files for easier comprehension and keep them undercore
directory:actions.py
: class structure with the actions encodingsconstants.py
: constants in the environments such as object colorsgrid.py
: the grid classmission.py
: the mission space implementationroomgrid.py
: class for environments with roomsworld_object
: object classes (Wall, Ball, Goal, Floor, ...)
- New
utils
directory for rendering filesrendering.py
andwindow.py
- Divide
- Add automatic doc generation for website, available at https://farama-foundation.github.io/MiniGrid/. @SiddarGu
Minor Changes
- Change file name
minigrid.py
tominigrid_env.py
. Fixes issue #243 @rodrigodelazcano