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

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