File: 0001-fix-sphinx-call.patch

package info (click to toggle)
mpire 2.10.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,064 kB
  • sloc: python: 5,473; makefile: 209; javascript: 182
file content (23 lines) | stat: -rw-r--r-- 739 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
From: Christian Bayle <bayle@debian.org>
Date: Sun, 16 Mar 2025 09:14:35 +0100
Subject: fix-sphinx-call

Forwarded: not-needed
Upstream builds for python <=3.9 where this doesn't apply.
---
 docs/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/conf.py b/docs/conf.py
index e2f0914..588443a 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -189,7 +189,7 @@ def setup(app):
     app.connect('autodoc-process-docstring', fixDocstring)
     app.connect('autodoc-process-signature', fixSignature)
     app.connect('autodoc-skip-member', skipMember)
-    app.add_stylesheet('css/custom.css')
+    app.add_css_file('css/custom.css')
 
 
 # -- General configuration ------------------------------------------------