aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorYin Huai <yhuai@databricks.com>2016-04-28 19:57:41 -0700
committerYin Huai <yhuai@databricks.com>2016-04-28 19:57:41 -0700
commit9c7c42bc6a35679cfffcdfb6feb26af834fec2e1 (patch)
treeaa6d78de55cc9107f26e0eee8ddaaf84da5436f2 /dev
parent2398e3d69c9a675d651c192107953de8e6c2aecd (diff)
downloadspark-9c7c42bc6a35679cfffcdfb6feb26af834fec2e1.tar.gz
spark-9c7c42bc6a35679cfffcdfb6feb26af834fec2e1.tar.bz2
spark-9c7c42bc6a35679cfffcdfb6feb26af834fec2e1.zip
Revert "[SPARK-14613][ML] Add @Since into the matrix and vector classes in spark-mllib-local"
This reverts commit dae538a4d7c36191c1feb02ba87ffc624ab960dc.
Diffstat (limited to 'dev')
-rw-r--r--dev/sparktestsupport/modules.py21
1 files changed, 6 insertions, 15 deletions
diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py
index 8b6ce1436d..6d47733ec1 100644
--- a/dev/sparktestsupport/modules.py
+++ b/dev/sparktestsupport/modules.py
@@ -93,18 +93,9 @@ class Module(object):
return hash(self.name)
-tags = Module(
- name="tags",
- dependencies=[],
- source_file_regexes=[
- "common/tags/",
- ]
-)
-
-
catalyst = Module(
name="catalyst",
- dependencies=[tags],
+ dependencies=[],
source_file_regexes=[
"sql/catalyst/",
],
@@ -174,7 +165,7 @@ hivecontext_compatibility = Module(
sketch = Module(
name="sketch",
- dependencies=[tags],
+ dependencies=[],
source_file_regexes=[
"common/sketch/",
],
@@ -186,7 +177,7 @@ sketch = Module(
graphx = Module(
name="graphx",
- dependencies=[tags],
+ dependencies=[],
source_file_regexes=[
"graphx/",
],
@@ -198,7 +189,7 @@ graphx = Module(
streaming = Module(
name="streaming",
- dependencies=[tags],
+ dependencies=[],
source_file_regexes=[
"streaming",
],
@@ -214,7 +205,7 @@ streaming = Module(
# fail other PRs.
streaming_kinesis_asl = Module(
name="streaming-kinesis-asl",
- dependencies=[tags],
+ dependencies=[],
source_file_regexes=[
"external/kinesis-asl/",
"external/kinesis-asl-assembly/",
@@ -279,7 +270,7 @@ streaming_flume_assembly = Module(
mllib_local = Module(
name="mllib-local",
- dependencies=[tags],
+ dependencies=[],
source_file_regexes=[
"mllib-local",
],