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 30
|
From: =?utf-8?b?T25kxZllaiBOb3bDvQ==?= <onovy@debian.org>
Date: Fri, 15 Jun 2018 13:43:56 +0200
Subject: Disable Sphinx extensions
Remove extensions which we do not have in Debian
Forwarded: not-needed
---
doc/en/conf.py | 3 ---
1 file changed, 3 deletions(-)
diff --git a/doc/en/conf.py b/doc/en/conf.py
index a4b1b86..e8dbff7 100644
--- a/doc/en/conf.py
+++ b/doc/en/conf.py
@@ -27,14 +27,11 @@ release = ".".join(version.split(".")[:2])
root_doc = "index"
extensions = [
- "pygments_pytest",
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
- "sphinx_removed_in",
- "sphinxcontrib_trio",
"sphinxcontrib.towncrier.ext", # provides `towncrier-draft-entries` directive
"sphinx_issues", # implements `:issue:`, `:pr:` and other GH-related roles
]
|