Skip to content

Commit 5532c66

Browse files
committed
[travis] attempt to test against both pandas 0.14 and 0.15, in preparation for handling the Categorical rewrite
1 parent d52f7d7 commit 5532c66

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.travis.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ python:
44
- 2.7
55
- 3.3
66
- 3.4
7+
matrix:
8+
include:
9+
# 0.14.0 is the last version with the old categorical system
10+
- python: 3.3
11+
env: PANDAS_VERSION_STR="=0.14.0"
12+
- python: 2.7
13+
env: PANDAS_VERSION_STR="=0.14.0"
714
# This disables sudo, but makes builds start much faster
815
# See http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
916
sudo: false
@@ -18,8 +25,9 @@ before_install:
1825
- conda config --set always_yes yes --set changeps1 no
1926
- conda update -q conda
2027
- conda info -a
21-
- conda create -q -n testenv python=$TRAVIS_PYTHON_VERSION numpy scipy pandas coverage nose pip
28+
- conda create -q -n testenv python=$TRAVIS_PYTHON_VERSION numpy scipy coverage nose pip
2229
- source activate testenv
30+
- conda install pandas${PANDAS_VERSION_STR}
2331
install:
2432
- python setup.py sdist
2533
- pip install dist/*

0 commit comments

Comments
 (0)