Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,20 @@
"numpy": ("https://numpy.org/doc/stable", None),
"polars": ("https://docs.pola.rs/api/python/stable", "polars.objects.inv"),
}
intersphinx_timeout = 10

suppress_warnings = [
"intersphinx.external",
]

git_root = Path(__file__).parent.parent

nitpicky = True # ensures all :class:, :obj:, etc. links are valid
nitpick_ignore = []
nitpick_ignore = [
# pandas.pydata.org is frequently unreachable; allow these to degrade gracefully.
("py:class", "pandas.DataFrame"),
("py:class", "pandas.ArrowDtype"),
]

doctest_global_setup = "import pyarrow; import vortex; import vortex as vx; import random; random.seed(a=0)"
doctest_default_flags = (
Expand Down
Loading
Loading