From 194fccb14377e26f8141ce8c8941c67b751babb3 Mon Sep 17 00:00:00 2001 From: Viacheslav Borovitskiy Date: Wed, 10 Jul 2024 23:11:20 +0200 Subject: [PATCH] Reorder Sphinx extensions in an attempt to fix github docs build error --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index b27363c6..edc82edd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,6 +32,7 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + 'autoapi.extension', 'sphinx.ext.viewcode', 'sphinx.ext.duration', 'sphinx.ext.doctest', @@ -45,7 +46,6 @@ ] # autoapi -extensions.append("autoapi.extension") autoapi_dirs = ["../geometric_kernels"] autodoc_typehints = 'description' autodoc_typehints_format = 'short'