File: docs-Exclude-some-not-available-Sphinx-extensions.patch

package info (click to toggle)
python-validate-pyproject 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 916 kB
  • sloc: python: 2,163; makefile: 32; sh: 17
file content (29 lines) | stat: -rw-r--r-- 787 bytes parent folder | download
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
26
27
28
29
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Fri, 30 Dec 2022 18:51:23 +0100
Subject: docs: Exclude some not available Sphinx extensions

sphinxemoji.sphinxemoji, sphinx-jsonschema and sphinxarg.ext are not
packaged and can't be used due this.

Forwarded: Not-Needed
---
 docs/conf.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/conf.py b/docs/conf.py
index cbfa3d5..b6f4966 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -74,9 +74,9 @@ extensions = [
     "sphinx.ext.napoleon",
     "sphinx.ext.extlinks",
     "sphinx_copybutton",
-    "sphinxemoji.sphinxemoji",
-    "sphinx-jsonschema",
-    "sphinxarg.ext",
+#    "sphinxemoji.sphinxemoji",
+#    "sphinx-jsonschema",
+#    "sphinxarg.ext",
 ]
 
 # ----------------------------------