You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2017/12/13 10:45:43 UTC

zeppelin git commit: [HOTFIX]: Fix IPythonInterpreter unit test

Repository: zeppelin
Updated Branches:
  refs/heads/master 4a679fc05 -> 3505625c2


[HOTFIX]: Fix IPythonInterpreter unit test

### What is this PR for?

This is for hotfix of `IPythonInterpreter` unit test failure. Just specify the version of ipython in `install_external_dependencies.sh`, otherwise latest ipython version will be installed, and the behavior may change.

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

### Todos
* [ ] - Task

### What is the Jira issue?
*

### How should this be tested?
* CI pass

### Screenshots (if appropriate)

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

Author: Jeff Zhang <zj...@apache.org>

Closes #2703 from zjffdu/ipython_version and squashes the following commits:

b4c7b42 [Jeff Zhang] HotFix: Fix IPythonInterpreter unit test


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

Branch: refs/heads/master
Commit: 3505625c26a45df14d6412b73da0b33aac68e908
Parents: 4a679fc
Author: Jeff Zhang <zj...@apache.org>
Authored: Mon Dec 11 20:53:08 2017 +0800
Committer: Jeff Zhang <zj...@apache.org>
Committed: Wed Dec 13 18:45:35 2017 +0800

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


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/3505625c/testing/install_external_dependencies.sh
----------------------------------------------------------------------
diff --git a/testing/install_external_dependencies.sh b/testing/install_external_dependencies.sh
index daa670b..e34296e 100755
--- a/testing/install_external_dependencies.sh
+++ b/testing/install_external_dependencies.sh
@@ -44,6 +44,6 @@ if [[ -n "$PYTHON" ]] ; then
   conda update -q conda
   conda info -a
   conda config --add channels conda-forge
-  conda install -q matplotlib pandasql ipython jupyter_client ipykernel matplotlib bokeh=0.12.6
+  conda install -q matplotlib pandasql ipython=5.4.1 jupyter_client ipykernel matplotlib bokeh=0.12.6
   pip install -q grpcio ggplot
 fi