-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed type parameter of Relationship to relationship_type to avoid …
…naming conflicts with relationship properties
- Loading branch information
Showing
4 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,9 @@ The library is built specifically for converting data into a [neo4j](https://neo | |
|
||
|
||
## Installation | ||
If you have setup a private ssh key for your github, copy-paste the command below to install the latest version ([v1.2.0][latest_tag]): | ||
If you have setup a private ssh key for your github, copy-paste the command below to install the latest version ([v1.2.1][latest_tag]): | ||
``` | ||
pip install git+ssh://[email protected]/sg-dev/[email protected].0 | ||
pip install git+ssh://[email protected]/sg-dev/[email protected].1 | ||
``` | ||
|
||
If you don't have ssh set up, download the latest wheel [here][latest_wheel] and install the wheel with: | ||
|
@@ -93,7 +93,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]: v1.2.0 | ||
[latest_tag]: https://github.com/sg-dev/rel2graph/releases/tag/v1.2.0 | ||
[latest_wheel]: https://github.com/sg-dev/rel2graph/releases/download/v1.2.0/rel2graph-1.0.1-py3-none-any.whl | ||
[latest_version]: v1.2.1 | ||
[latest_tag]: https://github.com/sg-dev/rel2graph/releases/tag/v1.2.1 | ||
[latest_wheel]: https://github.com/sg-dev/rel2graph/releases/download/v1.2.1/rel2graph-1.0.1-py3-none-any.whl | ||
[wiki]: https://rel2graph.jkminder.ch/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
setup( | ||
name = "rel2graph", | ||
packages = find_packages(), | ||
version = "1.2.0", | ||
version = "1.2.1", | ||
description = "Library for converting relational data into graph data (neo4j)", | ||
author = "Julian Minder", | ||
author_email = "[email protected]", | ||
|