Skip to content

Commit 917526a

Browse files
committed
fix(cli): Prefer launching demo --from jupyter-core
1 parent 9de5063 commit 917526a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/cev/_cli.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,12 @@ def run_notebook(notebook_path: Path):
9898
"uvx",
9999
"--python",
100100
"3.11",
101-
"--with",
102-
"." if _DEV else f"cev=={__version__}",
101+
"--from",
102+
"jupyter-core",
103103
"--with",
104104
"jupyterlab",
105+
"--with",
106+
"." if _DEV else f"cev=={__version__}",
105107
"jupyter",
106108
"lab",
107109
str(notebook_path),

0 commit comments

Comments
 (0)