File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -35,16 +35,16 @@ language: python
35
35
matrix :
36
36
include :
37
37
- python : 2.6
38
- env : NUMPY=numpy==1.6 MOCK=mock
38
+ env : NUMPY=numpy==1.6
39
39
- python : 2.7
40
- env : MOCK=mock PANDAS=pandas
40
+ env : PANDAS=pandas
41
41
- python : 3.3
42
42
- python : 3.4
43
43
- python : 3.5
44
44
- python : 2.7
45
45
env : TEST_ARGS=--pep8
46
46
- python : 2.7
47
- env : BUILD_DOCS=true MOCK=mock
47
+ env : BUILD_DOCS=true
48
48
- python : " nightly"
49
49
env : PRE=--pre
50
50
allow_failures :
@@ -64,21 +64,14 @@ install:
64
64
pip install --upgrade setuptools
65
65
# Install only from travis wheelhouse
66
66
- if [ -z "$PRE" ]; then
67
- wheelhouse_pip_install python-dateutil $NUMPY $PANDAS pyparsing pillow sphinx!=1.3.0;
67
+ wheelhouse_pip_install python-dateutil $NUMPY $PANDAS pyparsing pillow sphinx!=1.3.0 mock ;
68
68
else
69
- pip install $PRE python-dateutil $NUMPY pyparsing pillow sphinx!=1.3.0;
69
+ pip install $PRE python-dateutil $NUMPY pyparsing pillow sphinx!=1.3.0 mock ;
70
70
fi
71
71
# Always install from pypi
72
72
- pip install $PRE pep8 cycler
73
73
- ' pip install https://github.com/tacaswell/nose/zipball/mnt_py36_compat#egg=nose'
74
74
75
- # Install mock on python 2. Python 2.6 requires mock 1.0.1
76
- # Since later versions have dropped support
77
- - |
78
- if [[ -n "$MOCK" ]]; then
79
- echo $MOCK
80
- pip install $MOCK
81
- fi;
82
75
# We manually install humor sans using the package from Ubuntu 14.10. Unfortunatly humor sans is not
83
76
# availible in the Ubuntu version used by Travis but we can manually install the deb from a later
84
77
# version since is it basically just a .ttf file
You can’t perform that action at this time.
0 commit comments