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
|
From: Helmut Grohne <helmut@subdivi.de>
Date: Sun, 22 Sep 2024 13:15:05 +0200
Subject: move documentation dependencies to Build-Depends-Indep
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=983840
Forwarded: not-needed
Reviewed-by: Étienne Mollier <emollier@debian.org>
Last-Update: 2021-09-18
there are more unsatisfiable cross Build-Depends left. I've found
another opportunity for reduction though: Skipping the documentation
build during arch-only. Once doing so, we can demode sphinx and numpydoc
to Build-Depends-Indep. Doing so requires changing debian/rules though.
Last-Update: 2021-09-18
---
doc/conf.py | 3 +++
1 file changed, 3 insertions(+)
--- dipy.orig/doc/conf.py
+++ dipy/doc/conf.py
@@ -127,6 +127,9 @@
"tractography_methods_list.rst",
]
+# If true, the reST sources are included in the HTML build as _sources/<name>.
+html_copy_source = False
+
# The reST default role (used for this markup: `text`) to use for all documents.
# default_role = None
|