Skip to content

Commit

Permalink
fix: Prefer launching from jupyter-core
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt committed Oct 17, 2024
1 parent 9de5063 commit e3e06ee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/cev/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,12 @@ def run_notebook(notebook_path: Path):
"uvx",
"--python",
"3.11",
"--with",
"." if _DEV else f"cev=={__version__}",
"--from",
"jupyter-core",
"--with",
"jupyterlab",
"--with",
"." if _DEV else f"cev=={__version__}",
"jupyter",
"lab",
str(notebook_path),
Expand Down

0 comments on commit e3e06ee

Please sign in to comment.