Skip to content

Commit

Permalink
release 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jkminder committed Mar 22, 2022
1 parent c68117d commit 823d3c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ The library is built specifically for converting data into a [neo4j](https://neo

Note: The [py2neo](https://py2neo.org/2021.1/index.html) library does not support parallel relations of the same type (same source, same target and same type). If your graph requires such parallel relations please checkout the provided [py2neo extensions](/docs/documentation.md#py2neo-extensions).
## Installation
If you have setup a private ssh key for your github, copy-paste the command below to install the latest version ([v0.4.5][latest_tag]):
If you have setup a private ssh key for your github, copy-paste the command below to install the latest version ([v0.4.6][latest_tag]):
```
$ pip install git+ssh://[email protected]/sg-dev/[email protected].5
$ pip install git+ssh://[email protected]/sg-dev/[email protected].6
```

If you don't have ssh set up, download the latest wheel [here][latest_wheel] and install the wheel with:
Expand Down Expand Up @@ -85,7 +85,7 @@ converter()
# Known issues
If you encounter a bug or an unexplainable behavior, please check the [known issues](https://github.com/sg-dev/rel2graph/labels/bug) list. If your issue is not found, submit a new one.

[latest_version]: v0.4.5
[latest_tag]: https://github.com/sg-dev/rel2graph/releases/tag/v0.4.5
[latest_wheel]: https://github.com/sg-dev/rel2graph/releases/download/v0.4.5/rel2graph-0.4.5-py3-none-any.whl
[latest_version]: v0.4.6
[latest_tag]: https://github.com/sg-dev/rel2graph/releases/tag/v0.4.6
[latest_wheel]: https://github.com/sg-dev/rel2graph/releases/download/v0.4.6/rel2graph-0.4.6-py3-none-any.whl
[wiki]: docs/documentation.md
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
setup(
name = "rel2graph",
packages = find_packages(),
version = "0.4.5",
version = "0.4.6",
description = "Library for converting relational data into graph data (neo4j)",
author = "Julian Minder",
author_email = "[email protected]",
url = "github.com/sg-dev/rel2graph",
author_email = "[email protected]",
url = "github.com/sg-dev/rel2graph",
install_requires = requirements,
python_requires = ">=3.7"
)

0 comments on commit 823d3c8

Please sign in to comment.