Skip to content

Commit 68c95a0

Browse files
committed
fix(docs): suppress intersphinx external warnings
Suppress warnings for external intersphinx inventories (numpy, pandas) that may be temporarily unavailable. These transient 500 errors from external documentation sites should not fail our documentation builds. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> Signed-off-by: Joe Isaacs <[email protected]>
1 parent d49793a commit 68c95a0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docs/conf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@
5252
nitpicky = True # ensures all :class:, :obj:, etc. links are valid
5353
nitpick_ignore = []
5454

55+
# Suppress warnings for external intersphinx inventories that may be temporarily unavailable
56+
suppress_warnings = [
57+
"intersphinx.external",
58+
]
59+
5560
doctest_global_setup = "import pyarrow; import vortex; import vortex as vx; import random; random.seed(a=0)"
5661
doctest_default_flags = (
5762
doctest.ELLIPSIS | doctest.IGNORE_EXCEPTION_DETAIL | doctest.DONT_ACCEPT_TRUE_FOR_1 | doctest.NORMALIZE_WHITESPACE

0 commit comments

Comments
 (0)