feat: Bump blockbuster version to 1.5.5 (#5382)

Bump blockbuster version to 1.5.5
This commit is contained in:
Christophe Bornet 2024-12-20 14:45:06 +01:00 committed by GitHub
commit 4b0c42e520
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 36 additions and 35 deletions

View file

@ -63,14 +63,15 @@ def blockbuster(request):
]:
bb.functions[func].can_block_in("importlib_metadata/__init__.py", "metadata")
# TODO: make set_class_code async
bb.functions["os.stat"].can_block_in("langflow/custom/custom_component/component.py", "set_class_code")
# TODO: follow discussion in https://github.com/encode/httpx/discussions/3456
bb.functions["os.stat"].can_block_in("httpx/_client.py", "_init_transport")
bb.functions["os.stat"].can_block_in("rich/traceback.py", "_render_stack")
bb.functions["os.stat"].can_block_in("langchain_core/_api/internal.py", "is_caller_internal")
(
bb.functions["os.stat"]
# TODO: make set_class_code async
.can_block_in("langflow/custom/custom_component/component.py", "set_class_code")
# TODO: follow discussion in https://github.com/encode/httpx/discussions/3456
.can_block_in("httpx/_client.py", "_init_transport")
.can_block_in("rich/traceback.py", "_render_stack")
.can_block_in("langchain_core/_api/internal.py", "is_caller_internal")
)
(
bb.functions["os.path.abspath"]