Unverified Commit 97c73622 authored by Kelly Guo's avatar Kelly Guo Committed by GitHub

Removes tensordict dependencies (#1413)

# Description

Removes tensordict as a dependency in the installation and extensions
for isaac lab since we no longer use it in the codebase.


## 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 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
- [ ] 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
-->
parent dbb3d4a7
...@@ -45,7 +45,6 @@ ...@@ -45,7 +45,6 @@
"teleoperation", "teleoperation",
"xform", "xform",
"numpy", "numpy",
"tensordict",
"flatcache", "flatcache",
"physx", "physx",
"dpad", "dpad",
......
...@@ -19,7 +19,6 @@ keywords = ["kit", "robotics", "learning", "ai"] ...@@ -19,7 +19,6 @@ keywords = ["kit", "robotics", "learning", "ai"]
requirements = [ requirements = [
"numpy", "numpy",
"prettytable==3.3.0", "prettytable==3.3.0",
"tensordict",
"toml", "toml",
"hidapi", "hidapi",
"gymnasium==0.29.0", "gymnasium==0.29.0",
...@@ -29,7 +28,6 @@ requirements = [ ...@@ -29,7 +28,6 @@ requirements = [
modules = [ modules = [
"numpy", "numpy",
"prettytable", "prettytable",
"tensordict",
"toml", "toml",
"hid", "hid",
"gymnasium", "gymnasium",
......
...@@ -22,7 +22,6 @@ INSTALL_REQUIRES = [ ...@@ -22,7 +22,6 @@ INSTALL_REQUIRES = [
"torch==2.4.0", "torch==2.4.0",
"onnx==1.16.1", # 1.16.2 throws access violation on Windows "onnx==1.16.1", # 1.16.2 throws access violation on Windows
"prettytable==3.3.0", "prettytable==3.3.0",
"tensordict",
"toml", "toml",
# devices # devices
"hidapi", "hidapi",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment