You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing this package in a clean virtual environment, I'm receiving a number of warnings related to BeautifulSoup, which isn't pinned to any particular version:
tests/integration/studio/test_studio_get_metadata.py::test_successful_request_empty[auth]
tests/integration/studio/test_studio_get_metadata.py::test_successful_request_empty[auth-disabled]
tests/integration/studio/test_studio_get_metadata.py::test_successful_request[auth]
tests/integration/studio/test_studio_get_metadata.py::test_successful_request[auth-disabled]
/home/leilas/workspace/bots/bot-manager/venv_new/lib/python3.11/site-packages/metadata_parser/__init__.py:2245: DeprecationWarning: Call to deprecated method findAll. (Replaced by find_all) -- Deprecated since version 4.0.0.
meta = doc_searchpath.findAll(name="meta")
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
The warning isn't present in version 4.12.3 and is in 4.13.3.
The text was updated successfully, but these errors were encountered:
Version pinning was purposefully avoided for BeautifulSoup for a few reasons due to how they did releases - that will obviously no longer work.
I will probably do a version bump that pins BeautifulSoup4<4.15.0 tomorrow, then look into figuring out a long term solution. According to their changelog, these deprecations will be removed on 4.15.
After installing this package in a clean virtual environment, I'm receiving a number of warnings related to BeautifulSoup, which isn't pinned to any particular version:
The warning isn't present in version
4.12.3
and is in4.13.3
.The text was updated successfully, but these errors were encountered: