Skip to content

Commit 8e14a26

Browse files
authored
Adds nvidia-srl-usd-to-urdf dependency to isaaclab_mimic and isaaclab_teleop extensions (isaac-sim#4979)
# Description <!-- Thank you for your interest in sending a pull request. Please make sure to check the contribution guidelines. Link: https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html 💡 Please try to keep PRs small and focused. Large PRs are harder to review and merge. --> Adds the [nvidia-srl-usd-to-urdf](description) package as a dependency for isaaclab_mimic and isaaclab_teleop to fix missing module error for imitation learning examples with humanoid PINK envs. Fixes # (issue) <!-- As a practice, it is recommended to open an issue to have discussions on the proposed pull request. This makes it easier for the community to keep track of what is being developed or added, and if a given feature is demanded by more than one party. --> ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task -->
1 parent e8d0f67 commit 8e14a26

File tree

6 files changed

+29
-3
lines changed

6 files changed

+29
-3
lines changed

source/isaaclab_mimic/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
# Semantic Versioning is used: https://semver.org/
4-
version = "1.2.2"
4+
version = "1.2.3"
55

66
# Description
77
category = "isaaclab"

source/isaaclab_mimic/docs/CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
---------
33

4+
1.2.3 (2026-03-12)
5+
~~~~~~~~~~~~~~~~~~~
6+
7+
Added
8+
^^^^^
9+
10+
* Add nvidia-srl-usd-to-urdf dependency to isaaclab_mimic extension.
11+
12+
413
1.2.2 (2026-03-10)
514
~~~~~~~~~~~~~~~~~~~
615

source/isaaclab_mimic/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
"ipywidgets==8.1.5",
2525
# data collection
2626
"h5py",
27+
# humanoid support
28+
"nvidia-srl-usd-to-urdf",
2729
]
2830

2931
# Extra dependencies for IL agents

source/isaaclab_teleop/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
# Semantic Versioning is used: https://semver.org/
3-
version = "0.3.1"
3+
version = "0.3.2"
44

55
# Description
66
title = "Isaac Lab Teleop"

source/isaaclab_teleop/docs/CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
---------
33

4+
0.3.2 (2026-03-12)
5+
~~~~~~~~~~~~~~~~~~~
6+
7+
Added
8+
^^^^^
9+
10+
* Add nvidia-srl-usd-to-urdf dependency to isaaclab_teleop extension.
11+
12+
413
0.3.1 (2026-02-26)
514
~~~~~~~~~~~~~~~~~~~
615

source/isaaclab_teleop/setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
# Read the extension.toml file
1616
EXTENSION_TOML_DATA = toml.load(os.path.join(EXTENSION_PATH, "config", "extension.toml"))
1717

18+
# Minimum dependencies required prior to installation
19+
INSTALL_REQUIRES = [
20+
# humanoid support
21+
"nvidia-srl-usd-to-urdf",
22+
]
23+
1824
# Installation operation
1925
setup(
2026
name="isaaclab_teleop",
@@ -27,7 +33,7 @@
2733
include_package_data=True,
2834
package_data={"": ["*.pyi"]},
2935
python_requires=">=3.10",
30-
install_requires=[],
36+
install_requires=INSTALL_REQUIRES,
3137
extras_require={
3238
"teleop": ["isaacteleop"],
3339
},

0 commit comments

Comments
 (0)