You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by ni...@apache.org on 2017/09/03 19:42:40 UTC

systemml git commit: [MINOR] Added scikit learn as dependency for systemml pip package

Repository: systemml
Updated Branches:
  refs/heads/master c145dbe3f -> f5de13e7b


[MINOR] Added scikit learn as dependency for systemml pip package

- Without this fix, running a simple mlcontext example after `pip
install systemml` will result in an error.

Project: http://git-wip-us.apache.org/repos/asf/systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/f5de13e7
Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/f5de13e7
Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/f5de13e7

Branch: refs/heads/master
Commit: f5de13e7bbf6ce8351b30cbe5284a4df13b88143
Parents: c145dbe
Author: Niketan Pansare <np...@us.ibm.com>
Authored: Sun Sep 3 12:42:01 2017 -0700
Committer: Niketan Pansare <np...@us.ibm.com>
Committed: Sun Sep 3 12:42:01 2017 -0700

----------------------------------------------------------------------
 src/main/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/f5de13e7/src/main/python/setup.py
----------------------------------------------------------------------
diff --git a/src/main/python/setup.py b/src/main/python/setup.py
index d55c99f..0bad876 100644
--- a/src/main/python/setup.py
+++ b/src/main/python/setup.py
@@ -42,7 +42,7 @@ pillow_version = '2.0.0'
 REQUIRED_PACKAGES = [
     'numpy >= %s' % numpy_version,
     'scipy >= %s' % scipy_version,
-    'pandas',
+    'pandas', 'scikit-learn',
     'Pillow >= %s' % pillow_version
 ]