Also install ipython on Python-3.3+

This commit is contained in:
ZyX 2014-08-06 18:12:59 +04:00
parent 863264cd99
commit c3e2358931
1 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,12 @@ if python -c 'import sys; sys.exit(1 * (sys.version_info[0] != 2))' ; then
# Python 2.7
pip install ipython
fi
else
# Python 3
if python -c 'import sys; sys.exit(1 * (sys.version_info < (3, 3)))' ; then
# Python 3.3+
pip install ipython
fi
fi
sudo apt-get install -qq screen zsh tcsh mksh busybox
# Travis has too outdated fish. It cannot be used for tests.