Skip to content

Commit 4f9c3ad

Browse files
authored
Merge branch 'robot-descriptions:main' into main
2 parents 4579644 + 8c8d6f8 commit 4f9c3ad

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ All notable changes to this project will be documented in this file.
1414
- CICD: Disable fail-fast when testing loaders
1515
- Update `g1_mj_description` to load `g1_with_hands.xml` instead of `g1.xml`
1616

17+
### Fixed
18+
19+
- Update commit and URDF path of YAM description
20+
1721
## [1.20.0] - 2025-07-15
1822

1923
### Added

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ The DOF column denotes the number of actuated degrees of freedom.
163163
| `xarm7_mj_description` | xArm7 | UFACTORY | MJCF | BSD-3-Clause |
164164
| `yam_description` | YAM | I2RT Robotics | URDF | MIT |
165165
| `yam_mj_description` | YAM | I2RT Robotics | MJCF | MIT |
166-
| `yam_description` | YAM | I2RT Robotics | URDF | MIT |
167166
| `z1_description` | Z1 | UNITREE Robotics | URDF | BSD-3-Clause |
168167
| `z1_mj_description` | Z1 | UNITREE Robotics | MJCF | BSD-3-Clause |
169168

robot_descriptions/_repositories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class Repository:
152152
),
153153
"i2rt": Repository(
154154
url="https://github.com/i2rt-robotics/i2rt.git",
155-
commit="8a8f804d72b41a04a5c69520031aec9a5d328104",
155+
commit="7809b5b17227162d265f922e2e10598c0e214322",
156156
cache_path="i2rt",
157157
),
158158
"icub-models": Repository(

robot_descriptions/yam_description.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
1717
)
1818

19-
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "robot_models/yam/assets")
19+
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "i2rt", "robot_models", "yam")
2020

21-
URDF_PATH: str = _path.join(REPOSITORY_PATH, "robot_models/yam/yam.urdf")
21+
URDF_PATH: str = _path.join(PACKAGE_PATH, "yam.urdf")

0 commit comments

Comments
 (0)