1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Christoph Hueffelmann <chr@istoph.de>
Date: Thu, 3 Apr 2025 22:25:40 +0000
Subject: doc/conf.py: set default group for reproducible build
Forwarded: not-needed
---
doc/conf.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/doc/conf.py b/doc/conf.py
index d45ef3a..06854d7 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -34,6 +34,10 @@ extensions = [
'sphinx.ext.intersphinx',
]
+images_config = {
+ 'default_group': "default"
+}
+
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
|