File tree 4 files changed +12
-6
lines changed
4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ### Added
8
+
9
+ ### Changed
10
+
11
+ - Update repository for `` gen3_mj_description `` to `` mujoco_menagerie ``
12
+
7
13
## [ 1.11.0] - 2024-06-27
8
14
9
15
### Added
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ The DOF column denotes the number of actuated degrees of freedom.
136
136
| ` fr3_mj_description ` | FR3 | Franka Robotics | 7 | MJCF |
137
137
| ` gen2_description ` | Gen2 (Jaco) | Kinova | 6 | URDF |
138
138
| ` gen3_description ` | Gen3 (Jaco) | Kinova | 6 | URDF |
139
- | ` gen3_mj_description ` | Gen3 (Jaco) | Kinova | 7 | MJCF |
139
+ | ` gen3_mj_description ` | Gen3 | Kinova | 7 | MJCF |
140
140
| ` iiwa14_description ` | iiwa 14 | KUKA | 7 | URDF |
141
141
| ` iiwa14_mj_description ` | iiwa 14 | KUKA | 7 | MJCF |
142
142
| ` iiwa7_description ` | iiwa 7 | KUKA | 7 | URDF |
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ class Repository:
152
152
),
153
153
"mujoco_menagerie" : Repository (
154
154
url = "https://github.com/deepmind/mujoco_menagerie.git" ,
155
- commit = "bf50a5bd3c0ae757f768893bb06d4595df8e346f " ,
155
+ commit = "3d593a327ff8d5efd10f4926ccc477820e9252c1 " ,
156
156
cache_path = "mujoco_menagerie" ,
157
157
),
158
158
"nao_robot" : Repository (
Original file line number Diff line number Diff line change 4
4
# SPDX-License-Identifier: Apache-2.0
5
5
# Copyright 2022 Stéphane Caron
6
6
7
- """Kinova Jaco Gen3 description."""
7
+ """Kinova Gen3 MJCF description."""
8
8
9
9
from os import getenv as _getenv
10
10
from os import path as _path
11
11
12
12
from ._cache import clone_to_cache as _clone_to_cache
13
13
14
14
REPOSITORY_PATH : str = _clone_to_cache (
15
- "kinova_mj_description " ,
15
+ "mujoco_menagerie " ,
16
16
commit = _getenv ("ROBOT_DESCRIPTION_COMMIT" , None ),
17
17
)
18
18
19
- PACKAGE_PATH : str = _path .join (REPOSITORY_PATH )
19
+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH , "kinova_gen3" )
20
20
21
- MJCF_PATH : str = _path .join (PACKAGE_PATH , "xml" , "gen3_7dof_mujoco .xml" )
21
+ MJCF_PATH : str = _path .join (PACKAGE_PATH , "gen3 .xml" )
You can’t perform that action at this time.
0 commit comments