Skip to content
This repository was archived by the owner on Oct 3, 2022. It is now read-only.

Commit 8073761

Browse files
committed
travis.yml: for Python 2.6, test against html5lib 0.999999999.
html5lib 0.999999999 is the last version that supported Python 2.6. html5lib/html5lib-python#330 html5lib/html5lib-python@5f637af
1 parent c351c29 commit 8073761

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
@@ -26,7 +26,8 @@ install:
2626
- if [ "$TRAVIS_PYTHON_VERSION" = '2.6' ]; then PYICU_VERSION=1.9.3; fi
2727
- pip install --verbose pyicu${PYICU_VERSION:+==$PYICU_VERSION}
2828
- pip install --upgrade setuptools
29-
- pip install html5lib
29+
- if [ "$TRAVIS_PYTHON_VERSION" = '2.6' ]; then HTML5LIB_VERSION=0.999999999; fi
30+
- pip install html5lib${HTML5LIB_VERSION:+==$HTML5LIB_VERSION}
3031
- if [ "$TRAVIS_PYTHON_VERSION" = '2.6' ]; then PILLOW_VERSION=3.4.2; fi
3132
- pip install --verbose pillow${PILLOW_VERSION:+==$PILLOW_VERSION}
3233
- pip install pydiatra pyflakes

0 commit comments

Comments
 (0)