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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
From: Alastair McKinstry <mckinstry@debian.org>
Date: Thu, 24 Sep 2020 09:13:00 +0100
Subject: Drop sphinx_accessors as not currently present in Debian
Last-Updated: 2021-05-10
Forwarded: not-needed
---
doc/conf.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -7,7 +7,7 @@
from contextlib import suppress
from textwrap import dedent, indent
import packaging.version
-import sphinx_autosummary_accessors
+#import sphinx_autosummary_accessors
import yaml
from sphinx.application import Sphinx
from sphinx.util import logging
@@ -59,14 +59,14 @@
extensions = [
"sphinxcontrib.mermaid",
"sphinx.ext.autodoc",
- "sphinx.ext.autosummary",
+# "sphinx.ext.autosummary",
"sphinx.ext.intersphinx",
"sphinx.ext.extlinks",
"sphinx.ext.mathjax",
"sphinx.ext.napoleon",
"jupyter_sphinx",
"nbsphinx",
- "sphinx_autosummary_accessors",
+# "sphinx_autosummary_accessors",
"sphinx.ext.linkcode",
"sphinxext.opengraph",
"sphinx_copybutton",
@@ -193,7 +193,7 @@
require_js_url = 'file:////usr/share/javascript/requirejs/require.min.js'
# Add any paths that contain templates here, relative to this directory.
-templates_path = ["_templates", sphinx_autosummary_accessors.templates_path]
+templates_path = ["_templates" ] # , sphinx_autosummary_accessors.templates_path]
# The master toctree document.
master_doc = "index"
|