Skip to content

Commit 5d0aa5b

Browse files
Lift the exact version req of omni.warp.core
Trying to enable `omni.warp` after launching Kit is not possible when the exact version of `omni.warp.core` required differs from the one being shipped with Kit. To allow `omni.warp` to be loaded regardless of what version of `omni.warp.core` is pinned by Kit, we remove the exact version requirement. This means that the versions of `omni.warp` and `omni.warp.core` won't necessarily be in sync anymore, which could in theory lead to compatibility issues. However, in practice, we expect any new feature in `omni.warp` to not require the latest version of `omni.warp.core`, and we also expect `omni.warp.core` to be stable. Addresses GH-702.
1 parent ef25906 commit 5d0aa5b

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949
- Warn when an incompatible data type conversion is detected when constructing an array using the
5050
`__cuda_array_interface__` ([GH-624](https://github.com/NVIDIA/warp/issues/624),
5151
[GH-670](https://github.com/NVIDIA/warp/issues/670)).
52+
- Lift the exact version requirement in `omni.warp` towards `omni.warp.core`
53+
([GH-702](https://github.com/NVIDIA/warp/issues/702)).
5254

5355
### Fixed
5456

exts/omni.warp/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ exclude = ["Ogn*Database.py", "*/ogn*"]
3636
"omni.timeline" = {}
3737
"omni.ui" = {optional = true}
3838
"omni.usd" = {}
39-
"omni.warp.core" = {version = "1.7.1", exact = true}
39+
"omni.warp.core" = {}
4040
"usdrt.scenegraph" = {}
4141

4242
[settings]

0 commit comments

Comments
 (0)