Skip to content

Commit 010fef8

Browse files
authored
Bump to 3.9.0 (#534)
1 parent 40b1c8d commit 010fef8

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook.
44

55
## Upcoming
6+
7+
## Release 3.9.0 (Oct 9, 2023)
68
- New Gremlin Language Tutorial notebooks ([Link to PR](https://github.com/aws/graph-notebook/pull/533))
79
- Path: 06-Language-Tutorials > 03-Gremlin
810
- Added `--explain-type` option to `%%gremlin` ([Link to PR](https://github.com/aws/graph-notebook/pull/503))

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ It is recommended to check the [ChangeLog.md](ChangeLog.md) file periodically to
9696

9797
You will need:
9898

99-
* [Python](https://www.python.org/downloads/) 3.7.x-3.10.11
99+
* [Python](https://www.python.org/downloads/) 3.7.x-3.10.13
100100
* A graph database that provides one or more of:
101101
* A SPARQL 1.1 endpoint
102102
* An Apache TinkerPop Gremlin Server compatible endpoint
@@ -357,8 +357,8 @@ cd graph-notebook
357357
# 2) Create a new virtual environment
358358

359359
# 2a) Option 1 - pyenv
360-
pyenv install 3.10.11 # Only if not already installed; this can be any supported Python 3 version in Prerequisites
361-
pyenv virtualenv 3.10.11 build-graph-notebook
360+
pyenv install 3.10.13 # Only if not already installed; this can be any supported Python 3 version in Prerequisites
361+
pyenv virtualenv 3.10.13 build-graph-notebook
362362
pyenv local build-graph-notebook
363363

364364
# 2b) Option 2 - venv
@@ -376,7 +376,7 @@ python3 setup.py bdist_wheel
376376

377377
You should now be able to find the built distribution at
378378

379-
`./dist/graph_notebook-3.8.2-py3-none-any.whl`
379+
`./dist/graph_notebook-3.9.0-py3-none-any.whl`
380380

381381
And use it by following the [installation](https://github.com/aws/graph-notebook#installation) steps, replacing
382382

@@ -387,7 +387,7 @@ pip install graph-notebook
387387
with
388388

389389
``` python
390-
pip install ./dist/graph_notebook-3.8.2-py3-none-any.whl
390+
pip install ./dist/graph_notebook-3.9.0-py3-none-any.whl
391391

392392
```
393393

src/graph_notebook/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
SPDX-License-Identifier: Apache-2.0
44
"""
55

6-
__version__ = '3.8.2'
6+
__version__ = '3.9.0'

src/graph_notebook/widgets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph_notebook_widgets",
3-
"version": "3.8.2",
3+
"version": "3.9.0",
44
"author": "amazon",
55
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
66
"dependencies": {

0 commit comments

Comments
 (0)