Update .travis.yml

This commit is contained in:
Max Zwiessele 2015-09-12 18:01:31 +01:00
parent 1301737423
commit 9de8d862fd

View file

@ -28,9 +28,9 @@ before_install:
echo "OS not supported yet"; echo "OS not supported yet";
exit 1; exit 1;
fi fi
- if [[ "PYTHON_VERSION" == "2.7" ]]; then - if [[ $PYTHON_VERSION == "2.7" ]]; then
export MINICONDA=Miniconda; export MINICONDA=Miniconda;
elif [[ "PYTHON_VERSION" -ge "3" ]]; then elif [[ $PYTHON_VERSION == 3* ]]; then
export MINICONDA=Miniconda3; export MINICONDA=Miniconda3;
else else
echo "Could not find python version"; echo "Could not find python version";