Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed

- Update repository of YAM description

## [1.21.0] - 2025-09-03

### Added
Expand All @@ -16,6 +20,7 @@ All notable changes to this project will be documented in this file.

### Changed

- Bump minimum Python version to 3.8
- CICD: Disable fail-fast when testing loaders

### Fixed
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,16 @@ Loaders are implemented for the following robotics software:

Loading will automatically download the robot description if needed, and cache it to a local directory.

### Show a description
### Command line

You can display a robot description directly from the command line:
You can use [uv](https://docs.astral.sh/uv/) to manipulate robot descriptions directly from the command line:

```console
python -m robot_descriptions show_in_meshcat go2_description
uvx robot_descriptions pull iiwa14_description # download the robot description to cache
uvx robot_descriptions show_in_meshcat go2_description # display the robot description
```

A `robot_descriptions` alias for `python -m robot_descriptions` is also available.
Try `uvx robot_descriptions -h` to see the list of available commands. Alternatively, once the package is installed from PyPI or conda-forge, you can call the `robot_descriptions` alias directly from the command line, or replace `uvx` by `uv run`, or `python -m robot_descriptions` (old school).

### Import as submodule

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maintainers = [
{name = "Stéphane Caron", email = "stephane.caron@normalesup.org"},
]
dynamic = ['version', 'description']
requires-python = ">=3.7"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework :: Library",
Expand Down
1 change: 0 additions & 1 deletion robot_descriptions/_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ def has_urdf(self) -> bool:
"pr2_description": Description(
Format.URDF, tags={"dual_arm", "mobile_manipulator"}
),
"r1_description": Description(Format.URDF, tags={"mobile_manipulator"}),
"r2_description": Description(Format.URDF, tags={"humanoid"}),
"rby1_description": Description(Format.URDF, tags={"mobile_manipulator"}),
"reachy_description": Description(
Expand Down
7 changes: 1 addition & 6 deletions robot_descriptions/_repositories.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,6 @@ class Repository:
commit="d12af44559cd7e46f7afd513237f159f82f8402e",
cache_path="fanuc_m710ic_description",
),
"galaxea": Repository(
url="https://github.com/userguide-galaxea/URDF.git",
commit="40f728d49ef3799721d5d566a07efbb70cae6b53",
cache_path="galaxea",
),
"GingerURDF": Repository(
url="https://github.com/Rayckey/GingerURDF.git",
commit="6a1307cd0ee2b77c82f8839cdce3a2e2eed2bd8f",
Expand All @@ -156,7 +151,7 @@ class Repository:
cache_path="halodi-robot-models",
),
"i2rt": Repository(
url="https://github.com/i2rt-robotics/i2rt.git",
url="https://github.com/robot-descriptions/i2rt.git",
commit="7809b5b17227162d265f922e2e10598c0e214322",
cache_path="i2rt",
),
Expand Down
23 changes: 0 additions & 23 deletions robot_descriptions/r1_description.py

This file was deleted.

4,397 changes: 4,397 additions & 0 deletions uv.lock

Large diffs are not rendered by default.

Loading