Skip to content

Commit 15498df

Browse files
committed
Work around error in tinytag wheel
1 parent be490d9 commit 15498df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ python:
1313

1414
install:
1515
# 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
16+
# 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
1718
# lxml dropped support for Python 3.4 in version 4.4.0
1819
- if [[ $TRAVIS_PYTHON_VERSION == 3.4 ]]; then pip install 'lxml<4.4.0'; fi
1920
- pip install -r requirements.txt

0 commit comments

Comments
 (0)