File tree 1 file changed +13
-6
lines changed 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -55,23 +55,28 @@ matrix:
55
55
- python : " nightly"
56
56
57
57
before_install :
58
- - source ci/travis/travis_tools.sh
59
- # Install into our own pristine virtualenv
60
- - virtualenv --python=python venv
61
- - source venv/bin/activate
62
- - export PATH=/usr/lib/ccache:$PATH
58
+ - |
59
+ # Install into our own pristine virtualenv
60
+ source ci/travis/travis_tools.sh
61
+ virtualenv --python=python venv
62
+ source venv/bin/activate
63
+ export PATH=/usr/lib/ccache:$PATH
63
64
64
65
install :
65
66
- |
67
+ # Setup environment
66
68
ccache -s
67
69
# Upgrade pip and setuptools and wheel to get as clean an install as possible
68
70
pip install --upgrade pip
69
71
pip install --upgrade wheel
70
72
pip install --upgrade setuptools
71
- # Install only from travis wheelhouse
73
+ - |
74
+ # Install dependencies
72
75
if [ -z "$PRE" ]; then
76
+ # Install only from travis wheelhouse
73
77
wheelhouse_pip_install $NUMPY $PANDAS;
74
78
else
79
+ # Fall back to pypi for non suported python versions
75
80
pip install $PRE $NUMPY $PANDAS;
76
81
fi
77
82
# Always install from pypi
@@ -98,6 +103,8 @@ install:
98
103
# Use the special local version of freetype for testing
99
104
cp ci/travis/setup.cfg .
100
105
fi;
106
+ - |
107
+ # Install matplotlib
101
108
pip install -e .
102
109
103
110
script :
You can’t perform that action at this time.
0 commit comments