Skip to content

Commit e8d0364

Browse files
authored
Mitigated visualization widget crash on newer jupyterlab-widgets versions (#716)
* Pin jupyterlab-widgets<=1.1.10 * update changelog
1 parent de7b926 commit e8d0364

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Starting with v1.31.6, this file will contain a record of major features and upd
55
## Upcoming
66
- Added Neptune `--use-port` option to `%%gremlin` and `%%oc` ([Link to PR](https://github.com/aws/graph-notebook/pull/712))
77
- Fixed SPARQL path in example Fuseki configuration ([Link to PR](https://github.com/aws/graph-notebook/pull/713))
8+
- Mitigated visualizer crash on newer `jupyterlab-widgets` versions ([Link to PR](https://github.com/aws/graph-notebook/pull/716))
9+
- Fixed TS errors in visualizer widget build ([Link to PR](https://github.com/aws/graph-notebook/pull/716))
810

911
## Release 4.6.1 (October 1, 2024)
1012

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Jinja2>=3.0.3,<=3.1.4
44
jupyter==1.0.0
55
notebook>=6.1.5,<7.0.0
66
ipywidgets==7.7.2
7-
jupyterlab_widgets>=1.0.0,<3.0.0
7+
jupyterlab_widgets>=1.0.0,<=1.1.10
88
nbclient<=0.7.0
99
jupyter-contrib-nbextensions<=0.7.0
1010
widgetsnbextension<=3.6.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def get_version():
7070
'SPARQLWrapper==2.0.0',
7171
'requests>=2.32.0,<=2.32.2',
7272
'ipywidgets==7.7.2',
73-
'jupyterlab_widgets>=1.0.0,<3.0.0',
73+
'jupyterlab_widgets>=1.0.0,<=1.1.10',
7474
'networkx==2.4',
7575
'Jinja2>=3.0.3,<=3.1.4',
7676
'notebook>=6.1.5,<7.0.0',

0 commit comments

Comments
 (0)