diff options
| author | Graham Higgins <gjh-github@bel-epa.com> | 2013-05-18 00:30:22 +0100 |
|---|---|---|
| committer | Graham Higgins <gjh-github@bel-epa.com> | 2013-05-18 00:30:22 +0100 |
| commit | 07e80ff6a28f79264012dd7f8258d70001d8d681 (patch) | |
| tree | b6076e50d132d72906df6799262c409d6f0f201e /setup.py | |
| parent | f7c49f4b9674e4f18f1111bf2220be7af698e133 (diff) | |
| download | rdflib-07e80ff6a28f79264012dd7f8258d70001d8d681.tar.gz | |
May 17th release of html5lib 1.0b1 add Py3-compatibility, so use official release. html5lib 1.0b1 also removes support for Python 2.5, so pin Py2.5. to use html5lib==0.95. Propagation of dependency change.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -51,13 +51,16 @@ else: assert setup kwargs['test_suite'] = "nose.collector" kwargs['install_requires'] = [ - 'isodate', 'html5lib', + 'isodate', 'pyparsing<=1.5.7', 'SPARQLWrapper'] if sys.version_info[1]<7: kwargs['install_requires'].append('ordereddict') if sys.version_info[1]<6: kwargs['install_requires'].append('simplejson') + kwargs['install_requires'].append('html5lib==0.95') + else: + kwargs['install_requires'].append('html5lib') except ImportError: from distutils.core import setup |
