From 874ac3b8f788eb2931c132e0cb61655eaaf767d0 Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Mon, 23 Jan 2023 11:05:40 -0800 Subject: [PATCH] Bump itables to 1.4.5 (#436) * Bump itables to 1.4.5 * Update changelog Co-authored-by: Michael Chin --- ChangeLog.md | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 62410b6f..3b8c83cb 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -10,7 +10,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd - Fixed failing endpoint creation step in [01-People-Analytics/People-Analytics-using-Neptune-ML](https://github.com/aws/graph-notebook/blob/main/src/graph_notebook/notebooks/04-Machine-Learning/Sample-Applications/01-People-Analytics/People-Analytics-using-Neptune-ML.ipynb) ([Link to PR](https://github.com/aws/graph-notebook/pull/411)) - Fixed browser-specific issues with fullscreen graph widget ([Link to PR](https://github.com/aws/graph-notebook/pull/427)) - Pinned `numpy<1.24.0` to fix conflicts with `networkx` dependency during installation ([Link to PR](https://github.com/aws/graph-notebook/pull/416)) -- Pinned `itables<1.4.3` to fix error occurring when running query magics ([Link to PR](https://github.com/aws/graph-notebook/pull/429)) +- Excluded certain `itables` versions causing errors in query magics ([PR #1](https://github.com/aws/graph-notebook/pull/429)) ([PR #2](https://github.com/aws/graph-notebook/pull/429)) - Pinned version ceiling for all dependencies ([Link to PR](https://github.com/aws/graph-notebook/pull/431)) - Truncated metadata request/query time metrics ([Link to PR](https://github.com/aws/graph-notebook/pull/425)) diff --git a/requirements.txt b/requirements.txt index 1bc5f5ce..ef447ffc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -18,7 +18,7 @@ setuptools>=65.5.1,<=66.0.0 nbconvert>=6.3.0,<=7.2.8 jedi<0.18.0 markupsafe<2.1.0 -itables>=1.0.0,<1.4.3 +itables>=1.0.0,<=1.4.5,!=1.4.3,!=1.4.4 pandas<=1.5.3 numpy<1.24.0 diff --git a/setup.py b/setup.py index 2b9deb66..e403a7cc 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ def get_version(): 'nbconvert>=6.3.0,<=7.2.8', 'jedi<0.18.0', 'markupsafe<2.1.0', - 'itables>=1.0.0,<1.4.3', + 'itables>=1.0.0,<=1.4.5,!=1.4.3,!=1.4.4', 'pandas<=1.5.3', 'numpy<1.24.0' ],