Blame SOURCES/0001-Fix-sphinx-extension-conflict.patch

3fe0e1
From afcb422fe37e3c5419042e0e9b9f34bd3c1979b5 Mon Sep 17 00:00:00 2001
3fe0e1
From: Tristan Cacqueray <tdecacqu@redhat.com>
3fe0e1
Date: Mon, 2 Jan 2017 05:32:49 +0000
3fe0e1
Subject: [PATCH] Fix sphinx extension conflict
3fe0e1
3fe0e1
This change removes the pngmath extensions to fix the doc building error
3fe0e1
happening with 1.4.8:
3fe0e1
3fe0e1
sphinx.ext.mathjax: other math package is already loaded
3fe0e1
---
3fe0e1
 docs/conf.py | 2 +-
3fe0e1
 1 file changed, 1 insertion(+), 1 deletion(-)
3fe0e1
3fe0e1
diff --git a/docs/conf.py b/docs/conf.py
3fe0e1
index 44fc54e..d46c107 100644
3fe0e1
--- a/docs/conf.py
3fe0e1
+++ b/docs/conf.py
3fe0e1
@@ -25,7 +25,7 @@ import sys, os
3fe0e1
 
3fe0e1
 # Add any Sphinx extension module names here, as strings. They can be extensions
3fe0e1
 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
3fe0e1
-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.pngmath', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode']
3fe0e1
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode']
3fe0e1
 
3fe0e1
 # Add any paths that contain templates here, relative to this directory.
3fe0e1
 templates_path = ['_templates']
3fe0e1
-- 
3fe0e1
2.7.3
3fe0e1