-
Notifications
You must be signed in to change notification settings - Fork 3.9k
[Deps] Bump USD Core to 26.5 #6840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,7 +70,7 @@ dependencies = [ | |
| # OpenUSD (kit-less mode). Both packages vendor a complete ``pxr`` runtime, so | ||
| # they must never co-install: usd-core supplies pxr where it has wheels (x86_64), | ||
| # usd-exchange supplies it on aarch64 (where usd-core has no wheel). | ||
| "usd-core>=25.11,<26.0 ; platform_machine == 'x86_64' or platform_machine == 'AMD64'", | ||
| "usd-core>=26.5,<27.0 ; platform_machine == 'x86_64' or platform_machine == 'AMD64'", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Warning · Design Architecture — USD floor conflicts with Newton on wheel install path
|
||
| "usd-exchange>=2.2 ; platform_machine == 'aarch64'", | ||
| # avoid broken hf-xet pre-release cached on NVIDIA Artifactory | ||
| "hf-xet>=1.4.1,<2.0.0 ; platform_machine == 'x86_64' or platform_machine == 'AMD64' or platform_machine == 'aarch64'", | ||
|
|
@@ -381,6 +381,8 @@ environments = [ | |
| # Torch routes through [tool.uv.sources]. Values mirror [tool.isaaclab.versions] where applicable. | ||
| override-dependencies = [ | ||
| "numpy>=2", | ||
| # Override Newton's stale <26.5 importer bound; OpenUSD 26.5 fixes concurrent collider parsing. | ||
| "usd-core>=26.5,<27.0 ; platform_machine == 'x86_64' or platform_machine == 'AMD64'", | ||
| "mujoco~=3.10.0", | ||
| "mujoco-warp~=3.10.0,>=3.10.0.2", | ||
| "newton[sim,importers] @ git+https://github.com/newton-physics/newton.git@831076f52f14612aecace894c81270c1e0ed9479", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Changed | ||
| ^^^^^^^ | ||
|
|
||
| * **Breaking:** Raised the minimum kit-less OpenUSD version to 26.5 to fix | ||
| crashes when parsing colliders concurrently. Extensions built against USD 25 | ||
| must be rebuilt against USD 26. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Raising the minimum to
usd-core>=26.5satisfies the documented condition for removingPXR_WORK_THREAD_LIMIT=1, but the rendering harness still disables OpenUSD worker concurrency, increasing kit-less workflow runtime and leaving the upgraded concurrent path untested.Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!