From e3cbf62fcef479a051d116c451e69ddaa4568b57 Mon Sep 17 00:00:00 2001 From: David Wendt <45795991+davidwendt@users.noreply.github.com> Date: Tue, 26 Mar 2024 15:45:09 -0400 Subject: [PATCH] Ignore DLManagedTensor in the docs build (#15392) Fixes a docs build error since `DLManagedTensor` cannot be resolved from the dlpack documentation. --- docs/cudf/source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/cudf/source/conf.py b/docs/cudf/source/conf.py index 3bba50b482c..7afc8fe19bf 100644 --- a/docs/cudf/source/conf.py +++ b/docs/cudf/source/conf.py @@ -388,6 +388,7 @@ def _generate_namespaces(namespaces): "thrust", "cuda", "arrow", + "DLManagedTensor", # Unknown types "int8_t", "int16_t",