You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2017/02/17 15:15:30 UTC

zeppelin git commit: [ZEPPELIN-2129] [HOTFIX] Flaky test - PySparkInterpreterTest

Repository: zeppelin
Updated Branches:
  refs/heads/master 82c765042 -> 03cdbe313


[ZEPPELIN-2129] [HOTFIX] Flaky test - PySparkInterpreterTest

### What is this PR for?
testing/install_external_dependencies.sh installs latest version of miniconda for python/pyspark testing.

It looks like miniconda just released new version and latest version of miniconda3 looks like using python 3.6.
And pyspark has problem with python 3.6 https://issues.apache.org/jira/browse/SPARK-19019.

This PR fix the miniconda version to previous one.

### What type of PR is it?
Hot Fix

### Todos
* [x] - force fix miniconda version

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-2129

### How should this be tested?
CI gree

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Lee moon soo <mo...@apache.org>

Closes #2033 from Leemoonsoo/ZEPPELIN-2129 and squashes the following commits:

5b343d5 [Lee moon soo] force set miniconda version


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

Branch: refs/heads/master
Commit: 03cdbe3134f3560d9b1470b82d57b1176beb5e83
Parents: 82c7650
Author: Lee moon soo <mo...@apache.org>
Authored: Fri Feb 17 21:30:58 2017 +0900
Committer: Lee moon soo <mo...@apache.org>
Committed: Sat Feb 18 00:15:24 2017 +0900

----------------------------------------------------------------------
 testing/install_external_dependencies.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/03cdbe31/testing/install_external_dependencies.sh
----------------------------------------------------------------------
diff --git a/testing/install_external_dependencies.sh b/testing/install_external_dependencies.sh
index 9382307..963a876 100755
--- a/testing/install_external_dependencies.sh
+++ b/testing/install_external_dependencies.sh
@@ -35,7 +35,7 @@ fi
 
 # Install Python dependencies for Python specific tests
 if [[ -n "$PYTHON" ]] ; then
-  wget https://repo.continuum.io/miniconda/Miniconda${PYTHON}-latest-Linux-x86_64.sh -O miniconda.sh
+  wget https://repo.continuum.io/miniconda/Miniconda${PYTHON}-4.2.12-Linux-x86_64.sh -O miniconda.sh
   bash miniconda.sh -b -p $HOME/miniconda
   echo "export PATH='$HOME/miniconda/bin:$PATH'" >> ~/.environ
   source ~/.environ