ENH: travis - install pyliblzma on python2.7

This commit is contained in:
Yaroslav Halchenko 2018-09-11 23:17:01 -04:00
parent 3a5d6cbfa9
commit 544405bb18
1 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,9 @@ before_install:
# Note: pigz gives test errors on Travis CI since option "--" is not # Note: pigz gives test errors on Travis CI since option "--" is not
# supported, but pigz 2.3.1 supports it. Must be an older version. # supported, but pigz 2.3.1 supports it. Must be an older version.
# lzma is shipped with python 3 but requires 3rd party bindings on python2
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install pyliblzma; fi
# command to install dependencies # command to install dependencies
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt