From 2e9c483e85591cf677183f0e11899bbfc4adc3dd Mon Sep 17 00:00:00 2001 From: martinRenou Date: Mon, 27 Jun 2022 17:21:04 +0200 Subject: [PATCH 1/3] Update jupyter_server --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index dc37a681e..18c751229 100644 --- a/setup.cfg +++ b/setup.cfg @@ -32,7 +32,7 @@ include_package_data = True packages = find: python_requires = >=3.7 install_requires = - jupyter_server>=0.3.0,<2.0.0 + jupyter_server>=1.18,<2.0.0 jupyterlab_server>=2.3.0,<3 jupyter_client>=6.1.3,<8 nbclient>=0.4.0,<0.6 From bfb830bccde4a8cb8331594fa46f6a3c91625fee Mon Sep 17 00:00:00 2001 From: Duc Trung LE Date: Thu, 7 Jul 2022 00:54:10 +0700 Subject: [PATCH 2/3] Reduce number of iopub message --- tests/notebooks/many_iopub_messages.ipynb | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/notebooks/many_iopub_messages.ipynb b/tests/notebooks/many_iopub_messages.ipynb index f873d51f0..d91466d05 100644 --- a/tests/notebooks/many_iopub_messages.ipynb +++ b/tests/notebooks/many_iopub_messages.ipynb @@ -3,26 +3,26 @@ { "cell_type": "code", "execution_count": null, - "source": [ - "for i in range(2500):\n", - " display(i)\n", - "display(\"you\" + \" should see me\")" - ], - "outputs": [], "metadata": { "collapsed": false, "deletable": true, "editable": true - } + }, + "outputs": [], + "source": [ + "for i in range(500):\n", + " display(i)\n", + "display(\"you\" + \" should see me\")" + ] }, { "cell_type": "code", "execution_count": null, - "source": [], - "outputs": [], "metadata": { "collapsed": true - } + }, + "outputs": [], + "source": [] } ], "metadata": { @@ -46,4 +46,4 @@ }, "nbformat": 4, "nbformat_minor": 4 -} \ No newline at end of file +} From e4775117b9cadc9b091850fc044f257c96aa2b4f Mon Sep 17 00:00:00 2001 From: Duc Trung Le Date: Thu, 7 Jul 2022 22:03:57 +0700 Subject: [PATCH 3/3] Fix `jupyter_core` version --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 18c751229..c2a8d6254 100644 --- a/setup.cfg +++ b/setup.cfg @@ -32,6 +32,7 @@ include_package_data = True packages = find: python_requires = >=3.7 install_requires = + jupyter_core>=4.11.0 jupyter_server>=1.18,<2.0.0 jupyterlab_server>=2.3.0,<3 jupyter_client>=6.1.3,<8