Skip to content

Commit 562f269

Browse files
committed
Install nbformat in different ways, depending on python version.
Sigh.
1 parent 09ab6e5 commit 562f269

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ before_install:
2525
- conda update conda
2626
- conda info -a
2727
- travis_retry conda create -n test $CONDA IPython pip nose pyzmq jsonschema
28-
- travis_retry pip install nbformat
28+
- if [[ $CONDA == python=3.3* ]]; then
29+
pip install nbformat;
30+
else
31+
travis_retry conda install nbformat;
2932
- source activate test
3033
- travis_retry pip install coveralls
3134

0 commit comments

Comments
 (0)