Skip to content

Commit

Permalink
pin ipython version (#95)
Browse files Browse the repository at this point in the history
* add ipython as a dependency in setup.py
* bump to version 2.0.11
  • Loading branch information
austinkline authored Mar 25, 2021
1 parent 80327bc commit 4b3497a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Starting with v1.31.6, this file will contain a record of major features and upd

This section contains the list of changes which will be included in the next release

## Release 2.0.11 (Mar 25, 2021)

- Add ipython as a dependency in `setup.py` ([Link to PT](https://github.com/aws/graph-notebook/pull/95))

## Release 2.0.10 (Mar 18, 2021)

- Print execution time when running %load command ([Link to PR](https://github.com/aws/graph-notebook/pull/82))
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def get_version():
'widgetsnbextension',
'jupyter>=1.0.0',
'requests-aws4auth==1.0.1',
'botocore>=1.19.37'
'botocore>=1.19.37',
'ipython>=7.16.1'
],
package_data={
'graph_notebook': ['graph_notebook/widgets/nbextensions/static/*.js',
Expand Down
3 changes: 2 additions & 1 deletion src/graph_notebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
SPDX-License-Identifier: Apache-2.0
"""

__version__ = '2.0.10'
__version__ = '2.0.11'

2 changes: 1 addition & 1 deletion src/graph_notebook/widgets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph_notebook_widgets",
"version": "2.0.10",
"version": "2.0.11",
"author": "amazon",
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
"dependencies": {
Expand Down

0 comments on commit 4b3497a

Please sign in to comment.