#705 lost dependency - html5lib
Closed: Fixed Opened by vanzhiganov.

when I try to execute python createdb.py then I see next error message with html5lib

Traceback (most recent call last):
  File "createdb.py", line 7, in <module>
    from pagure import APP
  File "/home/gocode/pagure/pagure/__init__.py", line 51, in <module>
    import pagure.lib
  File "/home/gocode/pagure/pagure/lib/__init__.py", line 24, in <module>
    import bleach
  File "/home/gocode/pagure_env/local/lib/python2.7/site-packages/bleach/__init__.py", line 7, in <module>
    import html5lib
ImportError: No module named html5lib

was updated requirements.txt in #PR706

Could you check btw which version of bleach you have in your venv?

Looking at the setup.py upstream it seems that the dependency to html5lib is present: https://github.com/mozilla/bleach/blob/master/setup.py#L5

Metadata