Skip to content

Commit 0de218c

Browse files
committed
Fix docs build: pin warp intersphinx to /stable/
https://nvidia.github.io/warp/objects.inv now returns 404; the inventory moved under /stable/ (and /latest/). With warnings treated as errors, the broken intersphinx fetch fails the docs build on every PR. Repro: any recent CI run on develop, e.g. https://github.com/isaac-sim/IsaacLab/actions/runs/25533637651/job/74955918336 WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://nvidia.github.io/warp/objects.inv' not fetchable due to 404 Client Error: Not Found build finished with problems, 1 warning (with warnings treated as errors).
1 parent 22cb263 commit 0de218c

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@
140140
"torch": ("https://docs.pytorch.org/docs/2.11/", None),
141141
"isaacsim": ("https://docs.isaacsim.omniverse.nvidia.com/6.0.0/py/", None),
142142
"gymnasium": ("https://gymnasium.farama.org/", None),
143-
"warp": ("https://nvidia.github.io/warp/", None),
143+
# NOTE: pinned to /stable/ because /objects.inv at the root currently 404s
144+
"warp": ("https://nvidia.github.io/warp/stable/", None),
144145
"omniverse": ("https://docs.omniverse.nvidia.com/dev-guide/latest", None),
145146
}
146147

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Fixed
2+
^^^^^
3+
4+
* Fixed Sphinx docs build failing due to ``https://nvidia.github.io/warp/objects.inv`` returning 404.
5+
Pinned the ``warp`` intersphinx mapping to ``/stable/``, which is where the inventory now lives.

0 commit comments

Comments
 (0)