mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
infra: remove huggingface from ci tree (#25559)
This commit is contained in:
parent
6b98207eda
commit
dd2d094adc
7
.github/scripts/check_diff.py
vendored
7
.github/scripts/check_diff.py
vendored
@ -68,6 +68,13 @@ def dependents_graph() -> dict:
|
||||
|
||||
if "langchain" in dep:
|
||||
dependents[dep].add(pkg_dir)
|
||||
|
||||
# remove huggingface from dependents because of CI instability
|
||||
# specifically in huggingface jobs
|
||||
# https://github.com/langchain-ai/langchain/issues/25558
|
||||
for k in dependents:
|
||||
if "libs/partners/huggingface" in dependents[k]:
|
||||
dependents[k].remove("libs/partners/huggingface")
|
||||
return dependents
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user