You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by nw...@apache.org on 2019/04/25 00:33:10 UTC

[incubator-heron] branch master updated: Fix version of PyYAML. (#3240)

This is an automated email from the ASF dual-hosted git repository.

nwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new c59ea44  Fix version of PyYAML. (#3240)
c59ea44 is described below

commit c59ea44c7dfe208e08b995534282a56d91947a2a
Author: se choi <th...@gmail.com>
AuthorDate: Thu Apr 25 09:33:05 2019 +0900

    Fix version of PyYAML. (#3240)
---
 heron/executor/src/python/BUILD     | 2 +-
 heron/instance/src/python/BUILD     | 2 +-
 heron/statemgrs/src/python/BUILD    | 2 +-
 heron/tools/admin/src/python/BUILD  | 2 +-
 heron/tools/cli/src/python/BUILD    | 2 +-
 heron/tools/common/src/python/BUILD | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/heron/executor/src/python/BUILD b/heron/executor/src/python/BUILD
index 993c384..fd5a5a7 100644
--- a/heron/executor/src/python/BUILD
+++ b/heron/executor/src/python/BUILD
@@ -7,7 +7,7 @@ pex_library(
         "//heron/statemgrs/src/python:statemgr-py",
         "//heron/common/src/python:common-py",
     ],
-    reqs = ["PyYAML==3.10"],
+    reqs = ["PyYAML==3.13"],
 )
 
 pex_binary(
diff --git a/heron/instance/src/python/BUILD b/heron/instance/src/python/BUILD
index ec6b916..706cfbd 100644
--- a/heron/instance/src/python/BUILD
+++ b/heron/instance/src/python/BUILD
@@ -19,6 +19,6 @@ pex_binary(
     deps = [":instance-py"],
     reqs = [
         'colorlog==2.6.1',
-        'PyYAML==3.10'
+        'PyYAML==3.13'
     ]
 )
diff --git a/heron/statemgrs/src/python/BUILD b/heron/statemgrs/src/python/BUILD
index 5bce928..052ebd7 100644
--- a/heron/statemgrs/src/python/BUILD
+++ b/heron/statemgrs/src/python/BUILD
@@ -7,7 +7,7 @@ pex_library(
     '//heron/proto:proto-py',
   ],
   reqs = [
-    'PyYAML==3.10',
+    'PyYAML==3.13',
     'kazoo==1.3.1',
     'zope.interface==4.0.5'
   ],
diff --git a/heron/tools/admin/src/python/BUILD b/heron/tools/admin/src/python/BUILD
index cadeb7b..f3063c7 100644
--- a/heron/tools/admin/src/python/BUILD
+++ b/heron/tools/admin/src/python/BUILD
@@ -12,7 +12,7 @@ pex_library(
         "//heron/proto:proto-py",
     ],
     reqs = [
-      "PyYAML==3.10",
+      "PyYAML==3.13",
       "enum34==1.1.6",
       "requests==2.12.3",
       "netifaces==0.10.6"
diff --git a/heron/tools/cli/src/python/BUILD b/heron/tools/cli/src/python/BUILD
index f104f6f..1f33ab3 100644
--- a/heron/tools/cli/src/python/BUILD
+++ b/heron/tools/cli/src/python/BUILD
@@ -11,7 +11,7 @@ pex_library(
         "//heron/proto:proto-py",
     ],
     reqs = [
-      "PyYAML==3.10",
+      "PyYAML==3.13",
       "enum34==1.1.6",
       "requests==2.12.3",
       "netifaces==0.10.6"
diff --git a/heron/tools/common/src/python/BUILD b/heron/tools/common/src/python/BUILD
index 91f035e..699fe11 100644
--- a/heron/tools/common/src/python/BUILD
+++ b/heron/tools/common/src/python/BUILD
@@ -15,5 +15,5 @@ pex_library(
     deps = [
         "//heron/common/src/python:common-py",
     ],
-    reqs = ["PyYAML==3.10"],
+    reqs = ["PyYAML==3.13"],
 )