From cf280269c8122f39d0093a573023932ecb18b24d Mon Sep 17 00:00:00 2001 From: Ypatia Tsavliri Date: Wed, 9 Oct 2024 14:15:38 +0300 Subject: [PATCH] Remove deprecated call to fix CI docs builder (#5339) Followed the error log advice: `sphinx.errors.SphinxWarning: Calling get_html_theme_path is deprecated. If you are calling it to define html_theme_path, you are safe to remove that code.` Temporarily added a CPP API change and verified that now Docs build passes. Reverted that change. --- TYPE: NO_HISTORY DESC: Fix doc build --- tiledb/doxygen/source/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tiledb/doxygen/source/conf.py b/tiledb/doxygen/source/conf.py index b974dede4a3..7d5ffa9d6f7 100644 --- a/tiledb/doxygen/source/conf.py +++ b/tiledb/doxygen/source/conf.py @@ -133,7 +133,6 @@ else: import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme' - html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # -- Options for HTMLHelp output ------------------------------------------