You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by gw...@apache.org on 2017/05/23 23:33:18 UTC

incubator-systemml git commit: [SYSTEMML-1620] Remove incubation from python package info

Repository: incubator-systemml
Updated Branches:
  refs/heads/master 5dd4d44ec -> c4228349d


[SYSTEMML-1620] Remove incubation from python package info

As part of top level project updates, removed incubation disclaimer from
description text in setup.py used for generating pkg-info.

Closes #512.


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

Branch: refs/heads/master
Commit: c4228349d2765c3b88e63e272cc0753988db8675
Parents: 5dd4d44
Author: Glenn Weidner <gw...@us.ibm.com>
Authored: Tue May 23 16:28:06 2017 -0700
Committer: Glenn Weidner <gw...@us.ibm.com>
Committed: Tue May 23 16:28:06 2017 -0700

----------------------------------------------------------------------
 src/main/python/setup.py | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/c4228349/src/main/python/setup.py
----------------------------------------------------------------------
diff --git a/src/main/python/setup.py b/src/main/python/setup.py
index 3ba9ac6..d55c99f 100644
--- a/src/main/python/setup.py
+++ b/src/main/python/setup.py
@@ -63,12 +63,6 @@ setup(
     description='Apache SystemML is a distributed and declarative machine learning platform.',
     long_description='''
 
-    Apache SystemML is an effort undergoing incubation at the Apache Software Foundation (ASF),
-    sponsored by the Apache Incubator PMC.
-    While incubation status is not necessarily a reflection of the completeness
-    or stability of the code, it does indicate that the project has yet to be
-    fully endorsed by the ASF.
-
     Apache SystemML provides declarative large-scale machine learning (ML) that aims at
     flexible specification of ML algorithms and automatic generation of hybrid runtime
     plans ranging from single-node, in-memory computations, to distributed computations on Apache
@@ -76,7 +70,7 @@ setup(
     ''',
     url='http://systemml.apache.org/',
     author='Apache SystemML',
-    author_email='dev@systemml.incubator.apache.org',
+    author_email='dev@systemml.apache.org',
     packages=find_packages(),
     install_requires=REQUIRED_PACKAGES,
     include_package_data=True,