From 61ed3b9265214ee7f1afa71dee2ed7b35db5cdd9 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 10 Jun 2026 13:09:24 -0700 Subject: [PATCH] Raise myst-nb execution timeout to fix flaky Read the Docs builds The logo animation notebook (docs/source/logo.md) renders 360 frames and encodes them with libvpx-vp9, which takes close to 3 minutes on Read the Docs builders. The 180 s nb_execution_timeout was intermittently exceeded, causing docs builds to fail with CellTimeoutError. --- docs/source/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index cbe37c5c8..5ea9e6ef7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -79,7 +79,9 @@ # myst-nb configuration nb_execution_mode = "cache" -nb_execution_timeout = 180 +# Generating the logo animation (logo.md) takes ~3 minutes on Read the Docs +# builders, which intermittently exceeded the previous 180 s limit. +nb_execution_timeout = 600 nb_execution_raise_on_error = True