Skip to content

Commit 1995da7

Browse files
authored
Merge pull request scikit-learn-contrib#13 from mbernico/master
fixed setup.py requirements
2 parents c9d9b2e + 980cdb4 commit 1995da7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ __verbose__ : int, default=0
155155

156156
import pandas as pd
157157
from sklearn.ensemble import RandomForestClassifier
158-
from boruta_py import BorutaPy
158+
from boruta import BorutaPy
159159

160160
# load X and y
161161
# NOTE BorutaPy accepts numpy arrays only, hence the .values attribute

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
license='BSD 3 clause',
1010
packages=['boruta'],
1111
zip_safe=False,
12-
install_requires=['numpy==1.10.4',
13-
'scikit-learn==0.17.1',
14-
'scipy==0.17.0'
12+
install_requires=['numpy>=1.10.4',
13+
'scikit-learn>=0.17.1',
14+
'scipy>=0.17.0'
1515
])

0 commit comments

Comments
 (0)