Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
install matplotlib with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilipp committed Nov 27, 2018
1 parent 75fa3c5 commit 511defa
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,14 @@ matrix:
addons:
apt:
packages:
- matplotlib
- pandoc
install:
- pip install pillow sphinx==$SPHINX_VERSION jupyter
- source activate test_env
- if [[ $SPHINX_VERSION == "" ]]; then
pip install pillow sphinx jupyter coveralls;
else
pip install pillow sphinx==$SPHINX_VERSION jupyter coveralls;
fi
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then pip install pathlib; fi
- python setup.py install
- PACKAGES="matplotlib pillow jupyter coveralls sphinx"
- if [[ $SPHINX_VERSION != "" ]]; then PACKAGES="$PACKAGES==$SPHINX_VERSION"; fi
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then PACKAGES="$PACKAGES pathlib"; fi
- echo $PACKAGES
- pip install $PACKAGES
- python -m pip install . --no-deps --ignore-installed -vvv

script:
- coverage run --source=sphinx_nbexamples setup.py pytest
Expand Down

0 comments on commit 511defa

Please sign in to comment.