From 5b66f26c05b2855f5d3e44cfcaf0d7fb14d07892 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 29 Apr 2024 21:18:29 +0700 Subject: [PATCH] pandoc also runs slowly on emulated arm / riscv --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 78ff24a929..58e8dbcdee 100755 --- a/setup.py +++ b/setup.py @@ -580,7 +580,7 @@ def convert_doc(fsrc: str, fdst: str, fmt="html", force=False): cmd = [pandoc, "--from", "commonmark", "--to", fmt, "-o", fdst, fsrc] if fmt=="html" and pandoc_lua_ENABLED: cmd += ["--lua-filter", "./fs/bin/links-to-html.lua"] - r = subprocess.Popen(cmd).wait(30) + r = subprocess.Popen(cmd).wait(120) assert r==0, "'%s' returned %s" % (" ".join(cmd), r)