Skip to content

Commit 7ace7f3

Browse files
[minor] Sort descriptions alphabetically
1 parent de58d39 commit 7ace7f3

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ The goal of this project is to facilitate loading and sharing of robot descripti
2121
4. **Listing:** Add the description metadata to the ``DESCRIPTIONS`` dictionary in ``_descriptions.py``.
2222
5. **Testing:** Check that all unit tests are successful by ``tox -e py``.
2323
6. **README:** Document the description's submodule name in the Descriptions section of the [README](README.md).
24-
7. **Changelog:** Write down the new model to the [changelog](CHANGELOG.md).
24+
7. **Changelog:** Write down the new model at the top of the [changelog](CHANGELOG.md).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ The DOF column denotes the number of actuated degrees of freedom.
181181
|-------------------------------|-----------------------|--------------------------|-----|------------|
182182
| `atlas_drc_description` | Atlas DRC (v3) | Boston Dynamics | 30 | URDF |
183183
| `atlas_v4_description` | Atlas v4 | Boston Dynamics | 30 | URDF |
184+
| `draco3_description` | Draco3 | Apptronik | 25 | URDF |
184185
| `icub_description` | iCub | IIT | 32 | URDF |
185186
| `jaxon_description` | JAXON | JSK | 38 | URDF |
186187
| `jvrc_description` | JVRC-1 | AIST | 34 | URDF |
@@ -190,7 +191,6 @@ The DOF column denotes the number of actuated degrees of freedom.
190191
| `sigmaban_description` | SigmaBan | Rhoban | 20 | URDF |
191192
| `talos_description` | TALOS | PAL Robotics | 32 | URDF |
192193
| `valkyrie_description` | Valkyrie | NASA JSC Robotics | 59 | URDF |
193-
| `draco3_description` | Draco3 | Apptronik | 25 | URDF |
194194

195195
### Mobile manipulators
196196

robot_descriptions/_descriptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ def has_urdf(self) -> bool:
7777
"cassie_mj_description": Description(Format.MJCF),
7878
"cf2_description": Description(Format.URDF),
7979
"double_pendulum_description": Description(Format.URDF),
80+
"draco3_description": Description(Format.URDF),
8081
"edo_description": Description(Format.URDF),
8182
"eve_r3_description": Description(Format.URDF),
8283
"fetch_description": Description(Format.URDF),
@@ -121,5 +122,4 @@ def has_urdf(self) -> bool:
121122
"valkyrie_description": Description(Format.URDF),
122123
"yumi_description": Description(Format.URDF),
123124
"z1_description": Description(Format.URDF),
124-
"draco3_description": Description(Format.URDF),
125125
}

robot_descriptions/_repositories.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ class Repository:
7272
commit="fcc3775453e4da6797cd4eacd3d8321d9906755a",
7373
cache_path="cassie_mj_description",
7474
),
75+
"draco3_description": Repository(
76+
url="https://github.com/shbang91/draco3_description.git",
77+
commit="7ac3d5e7967208cc895974e69a43ba3bbd6a7133",
78+
cache_path="draco3_description",
79+
),
7580
"drake": Repository(
7681
url="https://github.com/RobotLocomotion/drake.git",
7782
commit="v1.7.0",
@@ -227,9 +232,4 @@ class Repository:
227232
commit="v1.1.0",
228233
cache_path="upkie_description",
229234
),
230-
"draco3_description": Repository(
231-
url="https://github.com/shbang91/draco3_description.git",
232-
commit="7ac3d5e7967208cc895974e69a43ba3bbd6a7133",
233-
cache_path="draco3_description",
234-
),
235235
}

0 commit comments

Comments
 (0)