aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests.sh
diff options
context:
space:
mode:
authorGravatar cclauss <cclauss@bluewin.ch>2017-08-18 19:14:00 +0200
committerGravatar Jie Luo <anandolee@gmail.com>2017-08-18 10:14:00 -0700
commit703f414ca6102e669ece2dcd5f7d9c2b05ca222e (patch)
treeea386c4447d9477daa41791b10f0ac7dcde94906 /tests.sh
parenta04eb8c191e60171a9634cdd64715bd92e6769af (diff)
Drop Python 3.3 from testing & add Python 3.5, 3.6 (#3512)
* Drop Python 3.3 from testing & add Python 3.5, 3.6 Python 3.3 goes [EOL](https://docs.python.org/devguide/index.html#branchstatus) next month. * Sync test.sh with the Python versions in tox.ini
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests.sh b/tests.sh
index f68de059..ccdeb2c6 100755
--- a/tests.sh
+++ b/tests.sh
@@ -235,8 +235,9 @@ internal_install_python_deps() {
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
}
@@ -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\{26,27,34,35,36\}-python
else
envlist=py27-python
fi
@@ -294,7 +295,7 @@ build_python_cpp() {
cd python
# Only test Python 2.6/3.x on Linux
if [ $(uname -s) == "Linux" ]; then
- envlist=py\{26,27,33,34\}-cpp
+ envlist=py\{26,27,34,35,36\}-cpp
else
envlist=py27-cpp
fi