From 5b91a2edbd554b244ba78654e3762e37d2996460 Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Thu, 19 Sep 2024 17:36:50 -0700 Subject: [PATCH] Bump nest_asyncio to 1.6.0 (#698) * Bump nest_asyncio to 1.6.0 * update changelog --- ChangeLog.md | 1 + requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index d32932fc..7451b048 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,6 +6,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd - Deprecated Python 3.8 support ([Link to PR](https://github.com/aws/graph-notebook/pull/683)) - Upgraded Neo4j Bolt driver to v5.x ([Link to PR](https://github.com/aws/graph-notebook/pull/682)) +- Upgraded nest_asyncio to 1.6.0 ([Link to PR](https://github.com/aws/graph-notebook/pull/698)) - Added `%get_import_task` line magic ([Link to PR](https://github.com/aws/graph-notebook/pull/668)) - Added `--export-to` JSON file option to `%%graph_notebook_config` ([Link to PR](https://github.com/aws/graph-notebook/pull/684)) - Improved iPython config directory retrieval logic ([Link to PR](https://github.com/aws/graph-notebook/pull/687)) diff --git a/requirements.txt b/requirements.txt index 4dc3232e..b5b13754 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,7 +22,7 @@ markupsafe<2.1.0 itables>=2.0.0,<=2.1.0 pandas>=2.1.0,<=2.2.2 numpy<1.24.0 -nest_asyncio>=1.5.5,<=1.5.6 +nest_asyncio>=1.5.5,<=1.6.0 async-timeout>=4.0,<5.0 json-repair==0.29.2 diff --git a/setup.py b/setup.py index 5254fffe..94283dce 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ def get_version(): 'itables>=2.0.0,<=2.1.0', 'pandas>=2.1.0,<=2.2.2', 'numpy<1.24.0', - 'nest_asyncio>=1.5.5,<=1.5.6', + 'nest_asyncio>=1.5.5,<=1.6.0', 'async-timeout>=4.0,<5.0', 'json-repair==0.29.2' ],