Skip to content

Commit 14163c8

Browse files
1.4 release (#276)
1 parent c6a7396 commit 14163c8

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ If you use this in your research, please cite:
8888
author = {Rodrigo de Lazcano and Kallinteris Andreas and Jun Jet Tai and Seungjae Ryan Lee and Jordan Terry},
8989
title = {Gymnasium Robotics},
9090
url = {http://github.com/Farama-Foundation/Gymnasium-Robotics},
91-
version = {1.3.1},
91+
version = {1.4.0},
9292
year = {2024},
9393
}
9494
```

docs/content/installation.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,23 @@ To install the Gymnasium-Robotics environments use `pip install gymnasium-roboti
99

1010
These environments also require the MuJoCo engine from Deepmind to be installed. Instructions to install the physics engine can be found at the [MuJoCo website](https://mujoco.org/) and the [MuJoCo Github repository](https://github.com/deepmind/mujoco).
1111

12-
Note that the latest environment versions use the latest mujoco python bindings maintained by the MuJoCo team. If you wish to use the old versions of the environments that depend on [mujoco-py](https://github.com/openai/mujoco-py), please install this library with `pip install gymnasium-robotics[mujoco-py]`
12+
### Legacy environments
13+
Note that the latest environment versions use the latest mujoco python bindings maintained by the MuJoCo team.
14+
If you wish to use the old versions of the environments that depend on [mujoco-py](https://github.com/openai/mujoco-py)
1315

14-
We support and test for Python 3.8, 3.9, 3.10 and 3.11 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.
16+
We provide 2 ways of installing the `mujoco-py` bindings
17+
18+
You can install the latest version of `mujoco-py` bindings with:
19+
20+
```sh
21+
pip install gymnasium-robotics[mujoco-py]
22+
```
23+
24+
If you need to use older `mujoco-py` versions for your work (does not support `cython>=3`):
25+
```bash
26+
pip install gymnasium-robotics[mujoco-py-original]
27+
```
28+
29+
30+
31+
We support and test for Python 3.10, 3.11, 3.12 and 3.13 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.

gymnasium_robotics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from gymnasium_robotics.envs.maze import maps
66
from gymnasium_robotics.envs.multiagent_mujoco import mamujoco_v1
77

8-
__version__ = "1.3.1"
8+
__version__ = "1.4.0"
99

1010

1111
def register_robotics_envs():

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ classifiers = [
2626
dependencies = [
2727
"mujoco>=2.2.0",
2828
"numpy>=1.21.0",
29-
# "gymnasium>=1.2.0",
30-
"gymnasium @ git+https://github.com/Farama-Foundation/Gymnasium.git@main#egg=gymnasium",
29+
"gymnasium>=1.2.0",
3130
"PettingZoo>=1.23.0",
3231
"Jinja2>=3.0.3",
3332
"imageio",

0 commit comments

Comments
 (0)