1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Mon, 12 Feb 2024 09:39:42 +0100
Subject: docs/conf.py: Use sphinx_rtd_theme instead
The used theme by upstream (pydata_sphinx_theme) isn't packaged in
Debian, falling back than to the classical RTD theme.
Forwarded: not-needed
---
docs/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index eb5a59f..33bc6e1 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -27,7 +27,7 @@ myst_heading_anchors = 2
# HTML -----------------------------------------------------------------
-html_theme = "pydata_sphinx_theme"
+html_theme = "sphinx_rtd_theme"
html_theme_options = {
"external_links": [
{"name": "Source code", "url": "https://github.com/pallets/quart"},
|