From 5cb5c98a6bcee0cacecb4858e229f7a70b5f85a7 Mon Sep 17 00:00:00 2001 From: Martyn Gigg <martyn.gigg@stfc.ac.uk> Date: Thu, 3 May 2012 12:07:41 +0100 Subject: [PATCH] Less stringent sphinx version test. Refs #4472 --- Code/Mantid/MantidPlot/docs/python/runsphinx.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Mantid/MantidPlot/docs/python/runsphinx.py.in b/Code/Mantid/MantidPlot/docs/python/runsphinx.py.in index fabb4529eb2..c1e6d30529d 100644 --- a/Code/Mantid/MantidPlot/docs/python/runsphinx.py.in +++ b/Code/Mantid/MantidPlot/docs/python/runsphinx.py.in @@ -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 @@ -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) ) -- GitLab