-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Bump usd-core dependency to 26.05 to fix USD physics crash #6521
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
Open
mataylor-nvidia
wants to merge
22
commits into
isaac-sim:develop
Choose a base branch
from
mataylor-nvidia:mataylor/bump-usd-26.05
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
f003ec7
Bump usd-core dependency to 26.05 to fix USD physics crash
mataylor-nvidia b9883d4
Fix benchmark test fixture expecting stale usd-core 25.11 version
mataylor-nvidia b639c8a
patch usd-core ext path
mataylor-nvidia 45d5da8
bat usd-core patch
mataylor-nvidia 1279e7e
update
mataylor-nvidia 052b52f
Fix pxr conflict with omni.usd.schema.usd_particle_field in OV enviro…
mataylor-nvidia 1e280e3
revert
mataylor-nvidia c8e1595
fix
mataylor-nvidia 3c0deaa
update
mataylor-nvidia bb65e2e
cleanup
mataylor-nvidia c7757b6
use small python script
mataylor-nvidia e850085
cleanup
mataylor-nvidia b755878
fix format
mataylor-nvidia 328fb7f
fix
mataylor-nvidia 29a0fb5
fix
mataylor-nvidia 2c3a052
fix
mataylor-nvidia 8d6a542
fix
mataylor-nvidia 812c51b
fix
mataylor-nvidia 9975b67
Surface read-only pxr promotion failure with a warning
mataylor-nvidia 8d97c56
fix
mataylor-nvidia 2e1efd3
fix
mataylor-nvidia 6dc7638
fix
mataylor-nvidia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
source/isaaclab/changelog.d/mataylor-golden-sim-usd.minor.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| Changed | ||
| ^^^^^^^ | ||
|
|
||
| * Bumped ``usd-core`` dependency from ``>=25.11,<26.0`` to ``>=26.05,<27.0`` on x86_64 to resolve | ||
| a crash in ``libusd_ms`` triggered by USD physics loading (``LoadUsdPhysicsFromRange``) for kitless runs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| # Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md). | ||
| # All rights reserved. | ||
| # | ||
| # SPDX-License-Identifier: BSD-3-Clause | ||
|
|
||
| """Locate omni.usd.libs and promote its pxr package to a regular package. | ||
|
|
||
| Prints the extension directory to stdout on success, nothing on failure. | ||
| Called by isaaclab.sh / isaaclab.bat to populate PYTHONPATH / LD_LIBRARY_PATH. | ||
| """ | ||
|
|
||
| import glob | ||
| import os | ||
| import sys | ||
|
|
||
| extscache = os.path.join(os.environ.get("ISAACLAB_PATH", ""), "_isaac_sim", "extscache") | ||
| candidates = sorted(glob.glob(os.path.join(extscache, "omni.usd.libs-*"))) | ||
| if candidates: | ||
| usd_libs_dir = candidates[-1] | ||
| init_py = os.path.join(usd_libs_dir, "pxr", "__init__.py") | ||
| if os.path.exists(os.path.join(usd_libs_dir, "pxr")) and not os.path.isfile(init_py): | ||
| try: | ||
| open(init_py, "w").close() | ||
| except OSError as exc: | ||
| print( | ||
| f"[WARNING] Cannot promote omni.usd.libs/pxr to a regular package; skipping USD path setup: {exc}", | ||
| file=sys.stderr, | ||
| ) | ||
| sys.exit(0) | ||
| print(usd_libs_dir, end="") |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.