diff --git a/docs/source/conf.py b/docs/source/conf.py index eb12791f452..2efacc4a579 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -68,11 +68,11 @@ if pip.wait() != 0: raise ChildProcessError("Pip install failed with %d." % (pip.returncode,)) - pip_docs_cmd = (where.first('pip'), 'install', '-r', os.path.join(_PROJ_PATH, 'requirements-doc.txt')) - print("Install pip docs requirements {cmd}...".format(cmd=repr(pip_docs_cmd))) - pip_docs = Popen(pip_docs_cmd, stdout=sys.stdout, stderr=sys.stderr, env=_env, cwd=_DOC_PATH) - if pip_docs.wait() != 0: - raise ChildProcessError("Pip docs install failed with %d." % (pip.returncode,)) + # pip_docs_cmd = (where.first('pip'), 'install', '-r', os.path.join(_PROJ_PATH, 'requirements-doc.txt')) + # print("Install pip docs requirements {cmd}...".format(cmd=repr(pip_docs_cmd))) + # pip_docs = Popen(pip_docs_cmd, stdout=sys.stdout, stderr=sys.stderr, env=_env, cwd=_DOC_PATH) + # if pip_docs.wait() != 0: + # raise ChildProcessError("Pip docs install failed with %d." % (pip.returncode,)) all_cmd = (where.first('make'), '-f', "all.mk", "build") print("Building all {cmd} at {cp}...".format(cmd=repr(all_cmd), cp=repr(_DOC_PATH)))