Package: ripe-atlas-tools / 2.3.0-2

0002-Fix-FTBFS-with-sphinx-1.8.patch Patch series | download
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
From: Apollon Oikonomopoulos <apoikos@debian.org>
Date: Thu, 14 Feb 2019 16:58:33 +0200
Subject: Fix FTBFS with sphinx 1.8

sphinx.ext.pngmath has been removed in favor of sphinx.ext.imgmath.
Replace the former with the latter in docs/conf.py.

Closes: #922262
---
 docs/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/conf.py b/docs/conf.py
index 58a0504..0f8ec32 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -40,7 +40,7 @@ extensions = [
     'sphinx.ext.autodoc',
     'sphinx.ext.intersphinx',
     'sphinx.ext.todo',
-    'sphinx.ext.pngmath',
+    'sphinx.ext.imgmath',
     'sphinx.ext.viewcode',
 ]