Skip to content

Commit c4bec8f

Browse files
Switches to RSL-RL install from PyPI (#1811)
# Description Since we now publish PyPI package for rsl-rl with its 2.1.1 release, this MR modifies the installation to use the PyPI package instead of the GitHub repository. Fixes [# (issue)](leggedrobotics/rsl_rl#57) ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [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 - [ ] 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 --------- Co-authored-by: Kelly Guo <[email protected]>
1 parent bf28d97 commit c4bec8f

7 files changed

+7
-7
lines changed

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

Diff for: apps/isaaclab.python.headless.kit

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
title = "Isaac Lab Python Headless"
77
description = "An app for running Isaac Lab headlessly"
8-
version = "2.0.0"
8+
version = "2.0.1"
99

1010
# That makes it browsable in UI with "experience" filter
1111
keywords = ["experience", "app", "isaaclab", "python", "headless"]

Diff for: apps/isaaclab.python.headless.rendering.kit

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[package]
1010
title = "Isaac Lab Python Headless Camera"
1111
description = "An app for running Isaac Lab headlessly with rendering enabled"
12-
version = "2.0.0"
12+
version = "2.0.1"
1313

1414
# That makes it browsable in UI with "experience" filter
1515
keywords = ["experience", "app", "isaaclab", "python", "camera", "minimal"]

Diff for: apps/isaaclab.python.kit

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
title = "Isaac Lab Python"
77
description = "An app for running Isaac Lab"
8-
version = "2.0.0"
8+
version = "2.0.1"
99

1010
# That makes it browsable in UI with "experience" filter
1111
keywords = ["experience", "app", "usd"]

Diff for: apps/isaaclab.python.rendering.kit

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[package]
1010
title = "Isaac Lab Python Camera"
1111
description = "An app for running Isaac Lab with rendering enabled"
12-
version = "2.0.0"
12+
version = "2.0.1"
1313

1414
# That makes it browsable in UI with "experience" filter
1515
keywords = ["experience", "app", "isaaclab", "python", "camera", "minimal"]

Diff for: apps/isaaclab.python.xr.openxr.kit

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
title = "Isaac Lab Python OpenXR"
77
description = "An app for running Isaac Lab with OpenXR"
8-
version = "2.0.0"
8+
version = "2.0.1"
99

1010
# That makes it browsable in UI with "experience" filter
1111
keywords = ["experience", "app", "usd"]

Diff for: source/isaaclab_rl/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"sb3": ["stable-baselines3>=2.1"],
4545
"skrl": ["skrl>=1.4.1"],
4646
"rl-games": ["rl-games==1.6.1", "gym"], # rl-games still needs gym :(
47-
"rsl-rl": ["rsl-rl-lib@git+https://github.com/leggedrobotics/rsl_rl.git"],
47+
"rsl-rl": ["rsl-rl-lib>=2.1.1"],
4848
}
4949
# Add the names with hyphens as aliases for convenience
5050
EXTRAS_REQUIRE["rl_games"] = EXTRAS_REQUIRE["rl-games"]

0 commit comments

Comments
 (0)