From 2285531110262ba09708c8f2054d365f79915995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=A1o=20Belica?= Date: Thu, 9 May 2024 16:13:40 +0000 Subject: [PATCH] Add support for "lxml[html_clean]" v5.2 module --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8b567f5..dc45bd8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ docopt>=0.6.1,<0.7 chardet -lxml +lxml[html_clean] pytest pytest-cov diff --git a/setup.py b/setup.py index 0239192..b04f9bf 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ with open(join(CURRENT_DIRECTORY, "README.rst")) as readme: install_requires = [ "docopt>=0.6.1,<0.7", "chardet", - "lxml>=2.0", + "lxml[html_clean]>=2.0", ] tests_require = [ "pytest",