Skip to content

Commit 019a1a1

Browse files
authored
Bump itables to 1.4.5 (#436)
* Bump itables to 1.4.5 * Update changelog Co-authored-by: Michael Chin <chnmch@amazon.com>
1 parent 3c06411 commit 019a1a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd
1010
- 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))
1111
- Fixed browser-specific issues with fullscreen graph widget ([Link to PR](https://github.com/aws/graph-notebook/pull/427))
1212
- Pinned `numpy<1.24.0` to fix conflicts with `networkx` dependency during installation ([Link to PR](https://github.com/aws/graph-notebook/pull/416))
13-
- Pinned `itables<1.4.3` to fix error occurring when running query magics ([Link to PR](https://github.com/aws/graph-notebook/pull/429))
13+
- 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))
1414
- Pinned version ceiling for all dependencies ([Link to PR](https://github.com/aws/graph-notebook/pull/431))
1515
- Truncated metadata request/query time metrics ([Link to PR](https://github.com/aws/graph-notebook/pull/425))
1616

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ setuptools>=65.5.1,<=66.0.0
1818
nbconvert>=6.3.0,<=7.2.8
1919
jedi<0.18.0
2020
markupsafe<2.1.0
21-
itables>=1.0.0,<1.4.3
21+
itables>=1.0.0,<=1.4.5,!=1.4.3,!=1.4.4
2222
pandas<=1.5.3
2323
numpy<1.24.0
2424

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def get_version():
8787
'nbconvert>=6.3.0,<=7.2.8',
8888
'jedi<0.18.0',
8989
'markupsafe<2.1.0',
90-
'itables>=1.0.0,<1.4.3',
90+
'itables>=1.0.0,<=1.4.5,!=1.4.3,!=1.4.4',
9191
'pandas<=1.5.3',
9292
'numpy<1.24.0'
9393
],

0 commit comments

Comments
 (0)