Skip to content

Commit 368a6a5

Browse files
committed
Add JupyterLab dev dependency
1 parent 65f03e0 commit 368a6a5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The `jlpm` command is JupyterLab's pinned version of
5858
# Clone the repo to your local environment
5959
# Change directory to the myextension directory
6060
# Install package in development mode
61-
pip install -e ".[test]"
61+
pip install -e ".[dev,test]"
6262
# Link your development version of the extension with JupyterLab
6363
jupyter labextension develop . --overwrite
6464
# Server extension must be manually installed in develop mode

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ dependencies = [
2828
dynamic = ["version", "description", "authors", "urls", "keywords"]
2929

3030
[project.optional-dependencies]
31+
dev = [
32+
"jupyterlab >=4",
33+
]
3134
test = [
3235
"coverage",
3336
"pytest",

0 commit comments

Comments
 (0)