From 2ccc8172fe7613431ed2484485e14444f3c40967 Mon Sep 17 00:00:00 2001 From: Elior Cohen Date: Wed, 3 Oct 2018 18:08:01 +0300 Subject: [PATCH] Fixed error on installation issue --- README.md | 3 ++- setup.py | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1c40043..2e5216c 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,10 @@ Python3 implementation of the node2vec algorithm Aditya Grover, Jure Leskovec an ## Changes: -New in `0.2.1`: +New in `0.2.2`: Added edge embedding functionality. Module `node2vec.edges`. +(Fixed error upon installation) ## Installation diff --git a/setup.py b/setup.py index 2555765..1f262d6 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,9 @@ from distutils.core import setup -import node2vec setup( name='node2vec', packages=['node2vec'], - version='0.2.1', + version='0.2.2', description='Implementation of the node2vec algorithm.', author='Elior Cohen', author_email='elior.cohen.p@gmail.com',