Skip to content

Commit 4f4c3c7

Browse files
Update repository for iiwa14_description to drake_models
1 parent 77f78df commit 4f4c3c7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file.
1212

1313
- Rename ``iiwa_description`` to ``iiwa14_description``
1414
- Rename ``iiwa_mj_description`` to ``iiwa14_mj_description``
15+
- Update repository for ``iiwa14_description`` to ``drake_models``
1516

1617
## [1.10.0] - 2024-04-24
1718

robot_descriptions/_repositories.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ class Repository:
7676
commit="v1.7.0",
7777
cache_path="drake",
7878
),
79+
"drake_models": Repository(
80+
url="https://github.com/RobotLocomotion/models.git",
81+
commit="c81f2458cf6d19a20a27e1495e7f07202536e845",
82+
cache_path="drake_models",
83+
),
7984
"eDO_description": Repository(
8085
url="https://github.com/Comau/eDO_description.git",
8186
commit="17b3f92f834746106d6a4befaab8eeab3ac248e6",

robot_descriptions/iiwa14_description.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@
1212
from ._cache import clone_to_cache as _clone_to_cache
1313

1414
REPOSITORY_PATH: str = _clone_to_cache(
15-
"drake",
15+
"drake_models",
1616
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
1717
)
1818

19-
PACKAGE_PATH: str = _path.join(
20-
REPOSITORY_PATH, "manipulation", "models", "iiwa14_description"
21-
)
19+
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "iiwa_description")
2220

2321
URDF_PATH: str = _path.join(
2422
PACKAGE_PATH, "urdf", "iiwa14_primitive_collision.urdf"

0 commit comments

Comments
 (0)