Skip to content

Commit c34659f

Browse files
Merge pull request #229 from Farama-Foundation/main
update mazev5 branch
2 parents faca140 + b1acee9 commit c34659f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ We support and test for Python 3.8, 3.9, 3.10 and 3.11 on Linux and macOS. We wi
2424

2525
* [Fetch](https://robotics.farama.org/envs/fetch/) - A collection of environments with a 7-DoF robot arm that has to perform manipulation tasks such as Reach, Push, Slide or Pick and Place.
2626
* [Shadow Dexterous Hand](https://robotics.farama.org/envs/shadow_dexterous_hand/) - A collection of environments with a 24-DoF anthropomorphic robotic hand that has to perform object manipulation tasks with a cube, egg-object, or pen. There are variations of these environments that also include data from 92 touch sensors in the observation space.
27+
* [MaMuJoCo](https://robotics.farama.org/envs/MaMuJoCo/) - A collection of multi agent factorizations of the [Gymnasium/MuJoCo](https://gymnasium.farama.org/environments/mujoco/) environments and a framework for factorizing robotic environments, uses the [pettingzoo.ParallelEnv](https://pettingzoo.farama.org/api/parallel/) API.
2728

2829
The [D4RL](https://github.com/Farama-Foundation/D4RL) environments are now available. These environments have been refactored and may not have the same action/observation spaces as the original, please read their documentation:
2930

@@ -32,8 +33,6 @@ The [D4RL](https://github.com/Farama-Foundation/D4RL) environments are now avail
3233
The different tasks involve hammering a nail, opening a door, twirling a pen, or picking up and moving a ball.
3334
* [Franka Kitchen](https://robotics.farama.org/envs/franka_kitchen/) - Multitask environment in which a 9-DoF Franka robot is placed in a kitchen containing several common household items. The goal of each task is to interact with the items in order to reach a desired goal configuration.
3435

35-
* [MaMuJoCo](https://robotics.farama.org/envs/MaMuJoCo/) - A collection of multi agent factorizations of the [Gymnasium/MuJoCo](https://gymnasium.farama.org/environments/mujoco/) environments and a framework for factorizing robotic environments, uses the [pettingzoo.ParallelEnv](https://pettingzoo.farama.org/api/parallel/) API.
36-
3736
**WIP**: generate new `D4RL` environment datasets with [Minari](https://github.com/Farama-Foundation/Minari).
3837

3938
## Multi-goal API

gymnasium_robotics/envs/robot_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def reset(
190190
def _mujoco_step(self, action):
191191
"""Advance the mujoco simulation.
192192
193-
Override depending on the python binginds, either mujoco or mujoco_py
193+
Override depending on the python bindings, either mujoco or mujoco_py
194194
"""
195195
raise NotImplementedError
196196

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424
'Topic :: Scientific/Engineering :: Artificial Intelligence',
2525
]
2626
dependencies = [
27-
"mujoco>=2.2.0",
27+
"mujoco>=2.2.0, <3.2.0",
2828
"numpy>=1.21.0",
2929
"gymnasium>=1.0.0a2",
3030
"PettingZoo>=1.23.0",

0 commit comments

Comments
 (0)