We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be490d9 commit 15498dfCopy full SHA for 15498df
.travis.yml
@@ -13,7 +13,8 @@ python:
13
14
install:
15
# lxml dropped support for Python 3.3 in version 4.3.0
16
- - if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then pip install 'lxml<4.3.0'; fi
+ # Must work around bug in tinytag https://github.com/devsnd/tinytag/issues/71
17
+ - if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then pip install --no-binary tinytag 'lxml<4.3.0' tinytag; fi
18
# lxml dropped support for Python 3.4 in version 4.4.0
19
- if [[ $TRAVIS_PYTHON_VERSION == 3.4 ]]; then pip install 'lxml<4.4.0'; fi
20
- pip install -r requirements.txt
0 commit comments