From 86a639a0720c34cd6c390afc0e54f8c17c28fb7f Mon Sep 17 00:00:00 2001 From: Jonathan Taylor Date: Mon, 2 Feb 2026 23:34:46 -0800 Subject: [PATCH] comment on allow-errors --- setup_notebook_env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_notebook_env.py b/setup_notebook_env.py index e1e8062..b3eb9b4 100755 --- a/setup_notebook_env.py +++ b/setup_notebook_env.py @@ -151,7 +151,7 @@ def main(): parser.add_argument('--uv-executable', default='uv', help='The `uv` executable to use (default: "uv")') parser.add_argument('--timeout', type=int, default=3600, help='Timeout for running notebooks (default: 3600)') parser.add_argument('--kernel', default=None, help='Kernel to use for running notebooks') - parser.add_argument('--allow-errors', action='store_true', help='Allow errors when running notebooks') + parser.add_argument('--allow-errors', action='store_true', help='Allow errors when running notebooks. For older commits, Ch02-statlearn-lab.ipynb raises exceptions. Since v2.2.1 these are handled by appropriate tags in the .ipynb cells.') parser.add_argument('nbfiles', nargs='*', help='Optional list of notebooks to run.')