Loading docs/source/conf.py +5 −5 Original line number Diff line number Diff line Loading @@ -68,11 +68,11 @@ if not os.environ.get("NO_CONTENTS_BUILD"): 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))) Loading Loading
docs/source/conf.py +5 −5 Original line number Diff line number Diff line Loading @@ -68,11 +68,11 @@ if not os.environ.get("NO_CONTENTS_BUILD"): 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))) Loading