From 1a27bd8f9eccd9adfb3da26e167e618712f509a8 Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 10 Jun 2024 11:18:10 +0100 Subject: [PATCH 1/2] test increase buffer size for latex build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 03e18a0c8..fc2c8ef16 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ build_latex: ## Build the documentation into a pdf # explicit cd here due to a bug in latexmk 4.41 python -m sphinx -b latex -d doc/_build/doctrees -D language=en doc/source doc/_build/latex && \ cd doc/_build/latex && \ - latexmk -pdf -f -dvi- -ps- -jobname=alibi-detect -interaction=nonstopmode + buf_size=300000 latexmk -pdf -f -dvi- -ps- -jobname=alibi-detect -interaction=nonstopmode .PHONY: clean_docs clean_docs: ## Clean the documentation build From f37df3403211d6fedd28e7920e59b3be77882bd4 Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 10 Jun 2024 11:25:56 +0100 Subject: [PATCH 2/2] Increase bufsize --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fc2c8ef16..2444f0fb3 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ build_latex: ## Build the documentation into a pdf # explicit cd here due to a bug in latexmk 4.41 python -m sphinx -b latex -d doc/_build/doctrees -D language=en doc/source doc/_build/latex && \ cd doc/_build/latex && \ - buf_size=300000 latexmk -pdf -f -dvi- -ps- -jobname=alibi-detect -interaction=nonstopmode + buf_size=1000000 latexmk -pdf -f -dvi- -ps- -jobname=alibi-detect -interaction=nonstopmode .PHONY: clean_docs clean_docs: ## Clean the documentation build