Skip to content

Commit

Permalink
Unpin html5lib 0.95 requirement
Browse files Browse the repository at this point in the history
Due to an html5lib regression (described in the thread at
https://groups.google.com/d/msg/rdflib-dev/ZcAgKzhS3vI/3mxIJz4rwWUJ) , we
opened html5lib/html5lib-python#67 on June 17th, 2013
and pinned html5lib to 0.95 in setup.py. The bug was fixed and a new release of
html5lib (1.0b3) was cut on July 24, 2013. The current version of html5lib is
0.999; let's unpin that html5lib requirement.

Signed-off-by: Dan Scott <dan@coffeecode.net>
  • Loading branch information
dbs committed Feb 26, 2014
1 parent 1282d41 commit 425148e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ def setup_python3():
kwargs['install_requires'].append('simplejson')
kwargs['install_requires'].append('html5lib==0.95')
else:
# 1.0b1 is broken - revert to no version when fixed
kwargs['install_requires'].append('html5lib==0.95')
kwargs['install_requires'].append('html5lib')

except ImportError:
from distutils.core import setup
Expand Down

0 comments on commit 425148e

Please sign in to comment.