From 6830bbdfe14088fda9cc0c872da227318205d293 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 2 May 2014 09:14:22 +0530 Subject: [PATCH] Use python 2 version of sphinx-build --- setup/publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/publish.py b/setup/publish.py index e11dbaf8eb..da7593abe8 100644 --- a/setup/publish.py +++ b/setup/publish.py @@ -81,7 +81,7 @@ class Manual(Command): os.makedirs('.build'+os.sep+'html') os.environ['__appname__'] = __appname__ os.environ['__version__'] = __version__ - subprocess.check_call(['sphinx-build', '-b', 'html', '-t', 'online', + subprocess.check_call(['sphinx-build2', '-b', 'html', '-t', 'online', '-d', '.build/doctrees', '.', '.build/html']) subprocess.check_call(['sphinx-build', '-b', 'myepub', '-d', '.build/doctrees', '.', '.build/epub'])