Skip to content

Commit 204b052

Browse files
committed
fix filepath of jupyterlab extension root
1 parent 54d9fe4 commit 204b052

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/javascript/jupyterlab-plotly/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-plotly",
3-
"version": "5.24.1",
3+
"version": "1.5.4+2901.g54d9fe453",
44
"description": "The plotly Jupyter extension",
55
"author": "The plotly.py team",
66
"license": "MIT",
@@ -78,4 +78,4 @@
7878
}
7979
}
8080
}
81-
}
81+
}

packages/python/plotly/plotly/_widget_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# for automated dev builds
33
#
44
# It is edited by hand prior to official releases
5-
__frontend_version__ = "^5.24.1"
5+
__frontend_version__ = "1.5.4+2901.g54d9fe453"

packages/python/plotly/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
here = os.path.dirname(os.path.abspath(__file__))
2222
project_root = os.path.dirname(os.path.dirname(os.path.dirname(here)))
23-
jupyterlab_extension_root = os.path.join(project_root, "javascript", "jupyterlab-plotly")
23+
jupyterlab_extension_root = os.path.join(project_root, "packages", "javascript", "jupyterlab-plotly")
2424
widget_root = os.path.join(here, "js")
2525
is_repo = os.path.exists(os.path.join(project_root, ".git"))
2626

0 commit comments

Comments
 (0)