Skip to content

Commit 02ba47f

Browse files
authored
Fix notebook kernel crashing with ZMQ errors on magic execution (#517)
* Fix notebook kernel crashing with ZMQ errors on magic execution * update changelog
1 parent 304fbf7 commit 02ba47f

File tree

5 files changed

+3
-10
lines changed

5 files changed

+3
-10
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd
44

55
## Upcoming
66
- Added `--explain-type` option to `%%gremlin` ([Link to PR](https://github.com/aws/graph-notebook/pull/503))
7+
- Fixed kernel crashing with ZMQ errors on magic execution ([Link to PR](https://github.com/aws/graph-notebook/pull/517))
78

89
## Release 3.8.2 (June 5, 2023)
910
- New Sample Applications - Healthcare and Life Sciences notebooks ([Link to PR](https://github.com/aws/graph-notebook/pull/484))

additional-databases/sagemaker/sagemaker-notebook-lifecycle/install-graph-notebook-lc-cn.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,8 @@ python3 -m ipykernel install --sys-prefix --name python3 --display-name "Python
2828
echo "installing python dependencies..."
2929
pip uninstall NeptuneGraphNotebook -y # legacy uninstall when we used to install from source in s3
3030
31-
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn "ipython==7.16.1"
3231
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn "jupyter-console<=6.4.0"
3332
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn "jupyter-client<=6.1.12"
34-
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn "ipywidgets<=7.7.1"
35-
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn "notebook==6.4.12"
36-
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn "nbclient<=0.7.0"
3733
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn "awswrangler"
3834
3935
if [[ ${VERSION} == "" ]]; then

additional-databases/sagemaker/sagemaker-notebook-lifecycle/install-graph-notebook-lc.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,8 @@ python3 -m ipykernel install --sys-prefix --name python3 --display-name "Python
2828
echo "installing python dependencies..."
2929
pip uninstall NeptuneGraphNotebook -y # legacy uninstall when we used to install from source in s3
3030
31-
pip install "ipython==7.16.1"
3231
pip install "jupyter-console<=6.4.0"
3332
pip install "jupyter-client<=6.1.12"
34-
pip install "ipywidgets<=7.7.1"
35-
pip install "notebook==6.4.12"
36-
pip install "nbclient<=0.7.0"
3733
pip install awswrangler
3834
3935
if [[ ${VERSION} == "" ]]; then

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SPARQLWrapper==1.8.4
22
networkx==2.4
33
Jinja2>=3.0.3,<=3.1.2
44
jupyter==1.0.0
5-
notebook>=6.1.5,<6.5.0
5+
notebook>=6.1.5,<7.0.0
66
ipywidgets==7.7.2
77
jupyterlab_widgets>=1.0.0,<3.0.0
88
nbclient<=0.7.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def get_version():
7373
'jupyterlab_widgets>=1.0.0,<3.0.0',
7474
'networkx==2.4',
7575
'Jinja2>=3.0.3,<=3.1.2',
76-
'notebook>=6.1.5,<6.5.0',
76+
'notebook>=6.1.5,<7.0.0',
7777
'nbclient<=0.7.3',
7878
'jupyter-contrib-nbextensions<=0.7.0',
7979
'widgetsnbextension<=3.6.1',

0 commit comments

Comments
 (0)