Make sure IPython<6 is used for Python 2.7

This commit is contained in:
Paul Romano 2018-01-29 15:49:30 -06:00
parent fe353aff40
commit 6090994545

View file

@ -10,6 +10,11 @@ pip install numpy cython
# pytest installed by default -- make sure we get latest
pip install --upgrade pytest
# IPython stopped supporting Python 2.7 with version 6
if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
pip install "ipython<6"
fi
# Pandas stopped supporting Python 3.4 with version 0.21
if [[ "$TRAVIS_PYTHON_VERSION" == "3.4" ]]; then
pip install pandas==0.20.3