Commit 610e4338 authored by Jie Luo's avatar Jie Luo

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/
parent 028d6f13
[tox]
envlist =
py{26,27,33,34,35,36}-{cpp,python}
py{27,33,34,35,36}-{cpp,python}
[testenv]
usedevelop=true
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment