Skip to content

Commit

Permalink
fix: python3.5 install lxml error
Browse files Browse the repository at this point in the history
  • Loading branch information
feiyang committed Jan 30, 2019
1 parent 99c9fb5 commit 563b519
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: python
cache: pip
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
Expand Down Expand Up @@ -38,7 +37,7 @@ install:
- pip install mysql-connector-python
- pip install https://github.com/marcus67/easywebdav/archive/master.zip

- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then pip install --no-use-wheel lxml; else pip install lxml; fi
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then pip install lxml --no-binary :all:; else pip install lxml; fi
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then pip install --allow-all-external -e .[all,test]; else pip install -e .[all,test]; fi
- pip install coveralls
script:
Expand Down

0 comments on commit 563b519

Please sign in to comment.