You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/04/10 13:47:53 UTC

arrow git commit: ARROW-741: [Python] Switch Travis CI to use Python 3.6 instead of 3.5

Repository: arrow
Updated Branches:
  refs/heads/master e327c2e08 -> c2f28cd07


ARROW-741: [Python] Switch Travis CI to use Python 3.6 instead of 3.5

I'm OK with not building Python 3.5 in Travis CI anymore because 3.5 and 3.6 are essentially the same at the C API level. Other opinions?

Author: Wes McKinney <we...@twosigma.com>

Closes #514 from wesm/ARROW-741 and squashes the following commits:

3aee721 [Wes McKinney] Remove apache channel
116b229 [Wes McKinney] Switch Travis CI to use Python 3.6 instead of 3.5


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

Branch: refs/heads/master
Commit: c2f28cd07413e262fa0b741c286f86d5c7277c56
Parents: e327c2e
Author: Wes McKinney <we...@twosigma.com>
Authored: Mon Apr 10 09:47:49 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Mon Apr 10 09:47:49 2017 -0400

----------------------------------------------------------------------
 ci/travis_install_conda.sh | 1 -
 ci/travis_script_python.sh | 8 ++++----
 2 files changed, 4 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/c2f28cd0/ci/travis_install_conda.sh
----------------------------------------------------------------------
diff --git a/ci/travis_install_conda.sh b/ci/travis_install_conda.sh
index 9c13b1b..e064317 100644
--- a/ci/travis_install_conda.sh
+++ b/ci/travis_install_conda.sh
@@ -32,7 +32,6 @@ conda info -a
 conda config --set show_channel_urls True
 conda config --add channels https://repo.continuum.io/pkgs/free
 conda config --add channels conda-forge
-conda config --add channels apache
 conda info -a
 
 conda install --yes conda-build jinja2 anaconda-client

http://git-wip-us.apache.org/repos/asf/arrow/blob/c2f28cd0/ci/travis_script_python.sh
----------------------------------------------------------------------
diff --git a/ci/travis_script_python.sh b/ci/travis_script_python.sh
index df11209..604cd13 100755
--- a/ci/travis_script_python.sh
+++ b/ci/travis_script_python.sh
@@ -28,7 +28,7 @@ pushd $PYTHON_DIR
 export PARQUET_HOME=$TRAVIS_BUILD_DIR/parquet-env
 
 build_parquet_cpp() {
-  conda create -y -q -p $PARQUET_HOME python=3.5
+  conda create -y -q -p $PARQUET_HOME python=3.6
   source activate $PARQUET_HOME
 
   # In case some package wants to download the MKL
@@ -120,15 +120,15 @@ python_version_tests() {
   python -m pytest -vv -r sxX pyarrow
 
   # Build documentation once
-  if [[ "$PYTHON_VERSION" == "3.5" ]]
+  if [[ "$PYTHON_VERSION" == "3.6" ]]
   then
       pip install -r doc/requirements.txt
       python setup.py build_sphinx
   fi
 }
 
-# run tests for python 2.7 and 3.5
+# run tests for python 2.7 and 3.6
 python_version_tests 2.7
-python_version_tests 3.5
+python_version_tests 3.6
 
 popd