Skip to content

Commit c0fff71

Browse files
michaelnchinDave Bechberger
authored and
Dave Bechberger
committed
Pin itables<1.4.3 (#429)
* Pin itables<1.4.3 * update changelog Co-authored-by: Michael Chin <chnmch@amazon.com>
1 parent dc74942 commit c0fff71

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd
88
- 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))
99
- Fixed browser-specific issues with fullscreen graph widget ([Link to PR](https://github.com/aws/graph-notebook/pull/427))
1010
- Pinned `numpy<1.24.0` to fix conflicts with `networkx` dependency during installation ([Link to PR](https://github.com/aws/graph-notebook/pull/416))
11+
- Pinned `itables<1.4.3` to fix error occurring when running query magics ([Link to PR](https://github.com/aws/graph-notebook/pull/429))
1112
- Truncated metadata request/query time metrics ([Link to PR](https://github.com/aws/graph-notebook/pull/425))
1213

1314
## Release 3.7.0 (December 7, 2022)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ Begin by installing `graph-notebook` and its prerequisites, then follow the rema
109109
# pin specific versions of required dependencies
110110
pip install rdflib==5.0.0
111111
pip install numpy==1.23.5
112+
pip install itables==1.4.2
112113
113114
# install the package
114115
pip install graph-notebook

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ setuptools>=65.5.1
1818
nbconvert>=6.3.0
1919
jedi<0.18.0
2020
markupsafe<2.1.0
21-
itables>=1.0.0
21+
itables>=1.0.0,<1.4.3
2222
pandas
2323
numpy<1.24.0
2424

setup.py

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

0 commit comments

Comments
 (0)