From b7a1bf93dccb8857db6d2b0814185e017238d9c3 Mon Sep 17 00:00:00 2001 From: Matias Carrasco Kind Date: Sun, 15 Jul 2018 15:58:59 -0500 Subject: [PATCH] version 1.0.3 --- README.md | 8 ++++++-- setup.py | 2 +- version.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 01e3952..0b75401 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,11 @@ It supports python2 and python3 ## Requirements -No extra requirements are needed, It also contains means to draw the trees created using the [igraph](http://igraph.org/) library. +- numpy + +No extra requirements are needed for the algorithm. + +In addition, it also contains means to draw the trees created using the [igraph](http://igraph.org/) library. ## Use Examples @@ -36,7 +40,7 @@ See these 2 notebooks examples on how to use it ## Releases -### v1.0.2 +### v1.0.3 - Initial Release diff --git a/setup.py b/setup.py index a00bd94..6182243 100644 --- a/setup.py +++ b/setup.py @@ -26,5 +26,5 @@ def read(filename): description='Isolation Forest for anomaly detection', long_description=read('README.md'), url='https://github.com/mgckind/iso_forest', - install_requires=[], + install_requires=["numpy"], ) diff --git a/version.py b/version.py index a9b9efc..732bb8f 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ """isoforest version""" -version_tag = (1, 0, 2) +version_tag = (1, 0, 3) __version__ = '.'.join(map(str, version_tag[:3])) if len(version_tag) > 3: