You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by zh...@apache.org on 2018/11/23 08:18:24 UTC

incubator-singa git commit: SINGA-409 [Singa 1.2.0] Basic `singa-cpu` import throws error

Repository: incubator-singa
Updated Branches:
  refs/heads/master e29ef5ff8 -> 99bae0209


SINGA-409 [Singa 1.2.0] Basic `singa-cpu` import throws error

It is due to the version mismatch of Protobuf.
In SINGA-396, we updated the protobuf version to be >=3.2.0. And the
singa package is built using 3.2.0.
However, 3.6.1 is installed in your OS. In other words, the runtime env
and the building env mismatch.
In this commit, we fix the version for both building and runtime to
3.6.1.


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

Branch: refs/heads/master
Commit: 99bae0209631fd3bf37de1a84d8e2ea396d1dddf
Parents: e29ef5f
Author: Wang Wei <wa...@gmail.com>
Authored: Tue Nov 20 17:47:19 2018 +0800
Committer: Wang Wei <wa...@gmail.com>
Committed: Tue Nov 20 17:47:19 2018 +0800

----------------------------------------------------------------------
 tool/conda/singa/meta.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/99bae020/tool/conda/singa/meta.yaml
----------------------------------------------------------------------
diff --git a/tool/conda/singa/meta.yaml b/tool/conda/singa/meta.yaml
index b81f3be..5613863 100644
--- a/tool/conda/singa/meta.yaml
+++ b/tool/conda/singa/meta.yaml
@@ -35,7 +35,7 @@ requirements:
   build:
     - swig 3.0.10
     - openblas 0.2.19
-    - protobuf >=3.2.0
+    - protobuf 3.6.1
     - glog 0.3.4
     - libgfortran 3.0.0 # [osx]
     - gcc 4.8.5 # [linux]
@@ -45,7 +45,7 @@ requirements:
 
   run:
     - openblas 0.2.19
-    - protobuf >=3.2.0
+    - protobuf 3.6.1
     - glog 0.3.4
     - libgfortran 3.0.0 # [osx]
     - libgcc 4.8.5 # [linux]