From 7a68244d3d883e432b5c0edc7b1f1e3c168cff1d Mon Sep 17 00:00:00 2001 From: Jeff Jennings Date: Thu, 10 Oct 2024 02:19:25 -0400 Subject: [PATCH] remove timout flag from convert --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 86e65785..bf17a176 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ convert: for notebook in ${MODIFIED_NOTEBOOKS}; do \ echo Installing requirements from $${_paths[i]}; \ python -m pip install --force-reinstall -r $${_paths[i]} > /dev/null; \ - nbcollection convert --timeout=600 ${CONVERTFLAGS} ${FLAGS} $$notebook; \ + nbcollection convert ${CONVERTFLAGS} ${FLAGS} $$notebook; \ i=$$((i+1)); \ done @@ -57,7 +57,7 @@ convertall: for notebook in ${ALL_NOTEBOOKS}; do \ echo Installing requirements from $${_paths[i]}; \ python -m pip install --force-reinstall -r $${_paths[i]} > /dev/null; \ - nbcollection convert --timeout=600 ${CONVERTFLAGS} ${FLAGS} $$notebook; \ + nbcollection convert ${CONVERTFLAGS} ${FLAGS} $$notebook; \ i=$$((i+1)); \ done