From 29eef08acb3c8d0fe498e75abee420a1c37f13d2 Mon Sep 17 00:00:00 2001 From: Ricardo Vieira Date: Tue, 25 Jun 2024 15:08:35 +0200 Subject: [PATCH] Do not run NB on RTD temporarily --- 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 3dc6a2f4a7..74ac0d9746 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -146,7 +146,9 @@ ] # myst config -nb_execution_mode = "force" if on_readthedocs else "off" +# Use commented code after https://github.com/pymc-devs/pymc/issues/7384 is fixed +# nb_execution_mode = "force" if on_readthedocs else "off" +nb_execution_mode = "off" nb_execution_allow_errors = False nb_execution_raise_on_error = True nb_execution_timeout = 300