Skip to content

Commit

Permalink
remove timout flag from convert
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffjennings committed Oct 10, 2024
1 parent dde73e1 commit 7a68244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down

0 comments on commit 7a68244

Please sign in to comment.