Skip to content

Commit

Permalink
Less stringent sphinx version test. Refs #4472
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed May 3, 2012
1 parent 49e2bd3 commit 5cb5c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/MantidPlot/docs/python/runsphinx.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
arguments
"""

__requires__ = 'Sphinx==1.0.7'
__requires__ = 'Sphinx>=1.0.7'
import sys
import os
from pkg_resources import load_entry_point
Expand All @@ -16,6 +16,6 @@ argv = [mantidplot,'-b', builder, src_dir, output_dir]

if __name__ == '__main__':
sys.exit(
load_entry_point('Sphinx==1.0.7', 'console_scripts', 'sphinx-build')(argv)
load_entry_point(__requires__, 'console_scripts', 'sphinx-build')(argv)
)

0 comments on commit 5cb5c98

Please sign in to comment.