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