This should fix issue #24 -- installing python3-lxml does nothing as it installs it for system interpreter but that doesn't seem to be the interpreter that runs the tests (running python -c 'import lxml' produces an import error). As lxml is optional dependency of bs4 and it seems to be used in the app it makes sense to add it in install_requires.
This should fix issue #24 -- installing
python3-lxml
does nothing as it installs it for system interpreter but that doesn't seem to be the interpreter that runs the tests (runningpython -c 'import lxml'
produces an import error). Aslxml
is optional dependency ofbs4
and it seems to be used in the app it makes sense to add it ininstall_requires
.