Skip to content

Commit

Permalink
Merge pull request protocolbuffers#3544 from anandolee/master
Browse files Browse the repository at this point in the history
Add Python 3.5, 3.6 && drop Python 2.6
  • Loading branch information
liujisi authored Aug 24, 2017
2 parents 364060b + 610e433 commit 859d94a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 7 additions & 0 deletions jenkins/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,13 @@ RUN apt-get install -y \
# -- For javascript -- \
npm

##################
# Python 3.5 3.6 dependencies.
RUN apt-get clean && apt-get update && apt-get install -y --force-yes \
python3.5-dev \
python3.6-dev \
&& apt-get clean

# On Debian/Ubuntu, nodejs binary is named 'nodejs' because the name 'node'
# is taken by another legacy binary. We don't have that legacy binary and
# npm expects the binary to be named 'node', so we just create a symbol
Expand Down
2 changes: 1 addition & 1 deletion python/tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{26,27,33,34}-{cpp,python}
py{27,33,34,35,36}-{cpp,python}

[testenv]
usedevelop=true
Expand Down
9 changes: 5 additions & 4 deletions tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,10 @@ 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
sudo apt-get install -y python3.6 python3.6-dev
fi
}

Expand Down Expand Up @@ -278,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\}-python
envlist=py\{27,33,34,35,36\}-python
else
envlist=py27-python
fi
Expand All @@ -292,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\}-cpp
envlist=py\{27,33,34,35,36\}-cpp
else
envlist=py27-cpp
fi
Expand Down

0 comments on commit 859d94a

Please sign in to comment.