Skip to content

Commit

Permalink
Bump to 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelnchin committed Oct 5, 2023
1 parent 40b1c8d commit dc98a24
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook.

## Upcoming

## Release 3.9.0 (Oct 9, 2023)
- New Gremlin Language Tutorial notebooks ([Link to PR](https://github.com/aws/graph-notebook/pull/533))
- Path: 06-Language-Tutorials > 03-Gremlin
- Added `--explain-type` option to `%%gremlin` ([Link to PR](https://github.com/aws/graph-notebook/pull/503))
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ It is recommended to check the [ChangeLog.md](ChangeLog.md) file periodically to

You will need:

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

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

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

You should now be able to find the built distribution at

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

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

Expand All @@ -387,7 +387,7 @@ pip install graph-notebook
with

``` python
pip install ./dist/graph_notebook-3.8.2-py3-none-any.whl
pip install ./dist/graph_notebook-3.9.0-py3-none-any.whl

```

Expand Down
2 changes: 1 addition & 1 deletion src/graph_notebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
SPDX-License-Identifier: Apache-2.0
"""

__version__ = '3.8.2'
__version__ = '3.9.0'
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": "3.8.2",
"version": "3.9.0",
"author": "amazon",
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
"dependencies": {
Expand Down

0 comments on commit dc98a24

Please sign in to comment.