From 05c770078a356a3622c065f87fdccd5df51b9363 Mon Sep 17 00:00:00 2001 From: Saransh Chopra Date: Thu, 28 Nov 2024 18:57:38 +0530 Subject: [PATCH] gh-460: update notebooks inplace when running nox -s examples (#461) --- noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/noxfile.py b/noxfile.py index 4c070657..6a45d5c7 100644 --- a/noxfile.py +++ b/noxfile.py @@ -72,6 +72,7 @@ def examples(session: nox.Session) -> None: session.run( "jupyter", "execute", + "--inplace", *Path().glob("examples/**/*.ipynb"), *session.posargs, )