Skip to content

Commit d4fe5b9

Browse files
committed
Update version and accept @despotovski01 fix
1 parent 516885e commit d4fe5b9

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,6 @@
44
Python3 implementation of the node2vec algorithm Aditya Grover, Jure Leskovec and Vid Kocijan.
55
[node2vec: Scalable Feature Learning for Networks. A. Grover, J. Leskovec. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD), 2016.](https://snap.stanford.edu/node2vec/)
66

7-
## Changes:
8-
9-
New in `0.3.0` (right now on version `0.3.1`):
10-
11-
Added support for big graphs which cannot be fit into memory during algorithm execution (causing OOM errors).
12-
13-
Thanks [`@pg2455`](https://github.com/pg2455) for the contribution of this feature.
14-
15-
167
## Installation
178

189
`pip install node2vec`

node2vec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .node2vec import Node2Vec
22
from . import edges
33

4-
__version__ = '0.3.1'
4+
__version__ = '0.3.2'

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
from distutils.core import setup
2-
import setuptools
32

43
setup(
54
name='node2vec',
65
packages=['node2vec'],
7-
version='0.3.1',
6+
version='0.3.2',
87
description='Implementation of the node2vec algorithm.',
98
author='Elior Cohen',
109
author_email='elior.cohen.p@gmail.com',

0 commit comments

Comments
 (0)