From 610e4338885fdfc462b189304b7992f6816874a2 Mon Sep 17 00:00:00 2001 From: Jie Luo Date: Tue, 22 Aug 2017 16:23:21 -0700 Subject: Drop python2.6 Jenkins complains for python 2.6 DEPRECATION: Python 2.6 is no longer supported by the Python core team ERROR: InvocationError: '/tmp/protobuf/protobuf/python/.tox/py26-cpp/bin/python setup.py -q build_py' https://grpc-testing.appspot.com/job/protobuf_pull_request/1502/testReport/junit/(root)/python_cpp/python_cpp/ --- tests.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'tests.sh') diff --git a/tests.sh b/tests.sh index df0c1bcb..5aba663d 100755 --- a/tests.sh +++ b/tests.sh @@ -234,7 +234,6 @@ internal_install_python_deps() { sudo apt-get install -y python-software-properties # for apt-add-repository sudo apt-add-repository -y ppa:fkrull/deadsnakes sudo apt-get update -qq - sudo apt-get install -y python2.6 python2.6-dev sudo apt-get install -y python3.3 python3.3-dev sudo apt-get install -y python3.4 python3.4-dev sudo apt-get install -y python3.5 python3.5-dev @@ -280,7 +279,7 @@ build_python() { cd python # Only test Python 2.6/3.x on Linux if [ $(uname -s) == "Linux" ]; then - envlist=py\{26,27,33,34,35,36\}-python + envlist=py\{27,33,34,35,36\}-python else envlist=py27-python fi @@ -294,9 +293,9 @@ build_python_cpp() { export LD_LIBRARY_PATH=../src/.libs # for Linux export DYLD_LIBRARY_PATH=../src/.libs # for OS X cd python - # Only test Python 2.6/3.x on Linux + # Only test Python 3.x on Linux if [ $(uname -s) == "Linux" ]; then - envlist=py\{26,27,33,34,35,36\}-cpp + envlist=py\{27,33,34,35,36\}-cpp else envlist=py27-cpp fi -- cgit v1.2.3