Skip to content

Commit

Permalink
version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mgckind committed Jul 15, 2018
1 parent 3888a8b commit b7a1bf9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -36,7 +40,7 @@ See these 2 notebooks examples on how to use it

## Releases

### v1.0.2
### v1.0.3

- Initial Release

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
)
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit b7a1bf9

Please sign in to comment.