Fix minimum version of Beautiful Soup increased to 4.11.0

Since:
6d9061b0 ("Ignore bs4 markup and XML parser warnings", 2022-09-02)
This commit is contained in:
Chris Mayo 2022-11-30 19:21:06 +00:00
parent a9312f39c4
commit 2294160a6a

View file

@ -28,11 +28,13 @@ warnings.filterwarnings(
import bs4
warnings.simplefilter(
# bs4 4.9.1 introduced MarkupResemblesLocatorWarning
hasattr(bs4, "MarkupResemblesLocatorWarning") and warnings.simplefilter(
'ignore', bs4.MarkupResemblesLocatorWarning
)
warnings.simplefilter(
# bs4 4.11.0 introduced builder.XMLParsedAsHTMLWarning
hasattr(bs4.builder, "XMLParsedAsHTMLWarning") and warnings.simplefilter(
'ignore', bs4.builder.XMLParsedAsHTMLWarning
)