Commit cd526bf4 authored by Matthew Brett's avatar Matthew Brett
Browse files

Try adding Python 3.6

parent 861d4b6e
......@@ -25,6 +25,10 @@ matrix:
env:
- PYTHON_VERSION=3.5.1
- VENV=venv
- os: osx
env:
- PYTHON_VERSION=3.6.0
- VENV=venv
script:
- source tests/test_multibuild.sh
......@@ -20,6 +20,8 @@ LATEST_3p2=3.2.5
LATEST_3p3=3.3.5
LATEST_3p4=3.4.4
LATEST_3p5=3.5.1
LATEST_3p6=3.6.0
function check_python {
if [ -z "$PYTHON_EXE" ]; then
......@@ -77,7 +79,9 @@ function fill_pyver {
echo $LATEST_2p7
elif [ $ver == "2.6" ]; then
echo $LATEST_2p6
elif [ $ver == 3 ] || [ $ver == "3.5" ]; then
elif [ $ver == 3 ] || [ $ver == "3.6" ]; then
echo $LATEST_3p6
elif [ $ver == "3.5" ]; then
echo $LATEST_3p5
elif [ $ver == "3.4" ]; then
echo $LATEST_3p4
......
......@@ -4,7 +4,9 @@
[ "$(fill_pyver 2.7.8)" == "2.7.8" ] || ingest
[ "$(fill_pyver 2.6)" == $LATEST_2p6 ] || ingest
[ "$(fill_pyver 2.6.2)" == "2.6.2" ] || ingest
[ "$(fill_pyver 3)" == $LATEST_3p5 ] || ingest
[ "$(fill_pyver 3)" == $LATEST_3p6 ] || ingest
[ "$(fill_pyver 3.6)" == $LATEST_3p6 ] || ingest
[ "$(fill_pyver 3.6.0)" == "3.6.0" ] || ingest
[ "$(fill_pyver 3.5)" == $LATEST_3p5 ] || ingest
[ "$(fill_pyver 3.5.0)" == "3.5.0" ] || ingest
[ "$(fill_pyver 3.4)" == $LATEST_3p4 ] || ingest
......
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