From 449db6e21f7e9f5e925a848673c9a705efffc6d4 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lenain Date: Thu, 22 Aug 2024 17:30:30 +0200 Subject: [PATCH] Exclude DQM Bokeh app from doc (can't be easily scriptified without embedding the Tornado server) from Sphinx doc build, as well as Franca's tools (which are very outdated). --- docs/conf.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ef185b74..d2c2e32d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -77,7 +77,13 @@ templates_path = ["_templates"] -exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] +exclude_patterns = [ + "_build", + "Thumbs.db", + ".DS_Store", + "**bokeh_app**", + "**tools**", +] # intersphinx allows referencing other packages sphinx docs intersphinx_mapping = { @@ -121,9 +127,9 @@ # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output -html_theme = "pydata_sphinx_theme" +# html_theme = "pydata_sphinx_theme" # html_theme = "alabaster" -# html_theme = "sphinx_rtd_theme" +html_theme = "sphinx_rtd_theme" # Output file base name for HTML help builder. htmlhelp_basename = f"{project}doc"