Download Latest Version v1.2.0 source code.tar.gz (119.0 MB)
Email in envelope

Get an email when there's a new version of Gymnasium

Home / v1.2.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2025-06-27 2.7 kB
v1.2.0 source code.tar.gz 2025-06-27 119.0 MB
v1.2.0 source code.zip 2025-06-27 119.6 MB
Totals: 3 Items   238.6 MB 2

Gymnasium v1.2.0

In Gym v0.24, v4 MuJoCo environments were added that used a different simulator (mujoco, not mujoco-py). Having been 3 years since v0.24 and with mujoco-py being unmaintained, it is limiting our ability to support Python 3.13. Therefore, in this release, we have moved the MuJoCo v2 and v3 to the Gymnasium-Robotics project, meaning the users who cannot upgrade to the v4 or v5 MuJoCo environments should update their code to:

:::python
import gymnasium as gym
import gymnasium_robotics  # `pip install "gymnasium-robotics[mujoco-py]"`

gym.register_envs(gymnasium_robotics)  # optional

env = gym.make("Humanoid-v3")

In addition, we have added support for Python 3.13 (and dropped Python 3.8 and 3.9 following NumPy and other projects).

New Features

Bug Fixes

In addition, this release includes numerous updates to the documentation, most importantly to the introductory pages, with an aim to make them easier for new users of Gymnasium or RL to understand.

Full Changelog: https://github.com/Farama-Foundation/Gymnasium/compare/v1.1.1...v1.2.0

Source: README.md, updated 2025-06-27