Skip to content
This repository was archived by the owner on Dec 4, 2019. It is now read-only.

Commit 5ddc023

Browse files
committed
Updated sklearn requirement number to .18. This build breaks with sklearn <= .17.
1 parent 3b2b936 commit 5ddc023

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This package is released under the Apache 2.0 license. See the LICENSE file.
2020
## Installation
2121

2222
This package has the following requirements:
23-
- a recent version of scikit-learn. Version 0.17 has been tested, older versions may work too.
23+
- Sklearn version >= .18.
2424
- Spark >= 2.0. Spark may be downloaded from the
2525
[Spark official website](http://spark.apache.org/). In order to use spark-sklearn, you need to use the pyspark interpreter or another Spark-compliant python interpreter. See the [Spark guide](https://spark.apache.org/docs/latest/programming-guide.html#overview) for more details.
2626
- [nose](https://nose.readthedocs.org) (testing dependency only)

python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# This file should list any python package dependencies.
2-
scikit-learn==0.17.1
2+
scikit-learn==0.18.1

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"Programming Language :: Python",
2020
"Topic :: Scientific/Engineering",
2121
]
22-
INSTALL_REQUIRES = ["scikit-learn >= 0.17"]
22+
INSTALL_REQUIRES = ["scikit-learn >= 0.18"]
2323

2424
# Project root
2525
ROOT = os.path.abspath(os.getcwd() + "/")

0 commit comments

Comments
 (0)