Skip to content

Commit

Permalink
DOC: Require Sphinx>=1.4.0 for docs
Browse files Browse the repository at this point in the history
This is because SVG math (imgmath) is added in that version.
  • Loading branch information
jluttine committed Apr 19, 2016
1 parent 35b8ff1 commit 24f4f50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

from setuptools import setup, find_packages

# Setup for BayesPy
setup(
install_requires = [
Expand All @@ -55,7 +55,7 @@ def read(fname):
],
extras_require = {
'doc': [
'sphinx>=1.2.3',
'sphinx>=1.4.0', # 1.4.0 adds imgmath extension
'sphinxcontrib-tikz>=0.4.2',
'sphinxcontrib-bayesnet',
'sphinxcontrib-bibtex',
Expand All @@ -82,7 +82,7 @@ def read(fname):
'graphical models',
'variational message passing'
],
classifiers = [
classifiers = [
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
Expand Down

0 comments on commit 24f4f50

Please sign in to comment.