Commit f0eee1ba authored by Kelly Guo's avatar Kelly Guo Committed by David Hoeller

Forces onnx version to 1.16.1 (#106)

# Description

On Windows, the latest onnx version 1.16.2 causes Access Violation
errors with pytorch. To avoid the error, we force Isaac Lab to use onnx
version 1.16.1

## 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`
- [x] 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
- [ ] 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 e5493b74
...@@ -20,6 +20,7 @@ INSTALL_REQUIRES = [ ...@@ -20,6 +20,7 @@ INSTALL_REQUIRES = [
# generic # generic
"numpy<2", "numpy<2",
"torch==2.4.0", "torch==2.4.0",
"onnx==1.16.1", # 1.16.2 throws access violation on Windows
"prettytable==3.3.0", "prettytable==3.3.0",
"tensordict", "tensordict",
"toml", "toml",
......
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