Skip to content

Commit 7c9cc11

Browse files
author
strands-agent
committed
fix: rename [sim] extra to [sim-mujoco] per review
Address yinsong1986's feedback to namespace the optional dependency group as [sim-mujoco] for clarity when additional sim backends are added.
1 parent 2e0cfbb commit 7c9cc11

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ groot-service = [
4848
lerobot = [
4949
"lerobot>=0.5.0,<0.6.0",
5050
]
51-
sim = [
51+
sim-mujoco = [
5252
"mujoco>=3.0.0,<4.0.0",
5353
]
5454
all = [
5555
"strands-robots[groot-service]",
5656
"strands-robots[lerobot]",
57-
"strands-robots[sim]",
57+
"strands-robots[sim-mujoco]",
5858
]
5959
dev = [
6060
"pytest>=6.0,<9.0.0",

strands_robots/simulation/mujoco/simulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def _ensure_meshes(model_path: str, robot_name: str):
295295
{
296296
"text": (
297297
f"❌ Auto-download failed for '{robot_name}': {e}. "
298-
f"Install robot_descriptions: pip install strands-robots[sim]"
298+
f"Install robot_descriptions: pip install strands-robots[sim-mujoco]"
299299
)
300300
}
301301
],

strands_robots/tools/download_assets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Assets are cached in ``~/.strands_robots/assets/`` (override with
88
``STRANDS_ASSETS_DIR``). Install the optional dependency::
99
10-
pip install strands-robots[sim] # includes robot_descriptions
10+
pip install strands-robots[sim-mujoco] # includes robot_descriptions
1111
1212
CLI::
1313

0 commit comments

Comments
 (0)