From ae8a4d72c4db1d61ab2c7e0a522bcdcc1129bee1 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 10 Mar 2021 14:47:07 -0300 Subject: [PATCH] Reverted lxml dependency removal. The lxml dependency is a bs4 dependency. But we must require it. I think using `beautifulsoup4[lxml]` is the best, but don't know how to test it. On Debian this is forced by python3-bs4, but when using pip the lxml dependency is optional. Sorry for the noise. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8604c081f..92fe3a794 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ beautifulsoup4 >= 4.3.2 # Deal with HTML and XML tags. -#lxml >= 3.7.2 +lxml >= 3.7.2 # Used by beautifulsoup4, but optional. XlsxWriter >= 0.7.3 # Write the XLSX output file. future # For print statements. tqdm >= 4.30.0 # Progress bar.