Skip to content

Commit 47c6c50

Browse files
authored
update travis (#60)
* update travis with more package versions * fix_travis_yml there were errors in first commit * more_fixes
1 parent b7154c8 commit 47c6c50

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.travis.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ python:
1212
- 3.6
1313

1414
env:
15-
- CONDA_PACKAGES="numpy scipy pandas bcolz pytest future xarray dask scikit-image"
16-
PIP_PACKAGES="tqdm codecov pytest-cov tqdm"
15+
global:
16+
- CONDA_PACKAGES="scipy bcolz pytest future xarray dask scikit-image"
17+
- PIP_PACKAGES="tqdm codecov pytest-cov tqdm"
18+
matrix:
19+
- NUMPY="numpy" PANDAS="pandas"
20+
- NUMPY="numpy=1.12.1" PANDAS="pandas"
21+
- NUMPY="numpy" PANDAS="pandas=0.19.2"
1722

1823
before_install:
1924
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
@@ -30,7 +35,7 @@ before_install:
3035
- conda info -a
3136

3237
install:
33-
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION $CONDA_PACKAGES
38+
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION $CONDA_PACKAGES $NUMPY $PANDAS
3439
- source activate test-environment
3540
- pip install $PIP_PACKAGES
3641
- pip install -e .

0 commit comments

Comments
 (0)