We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97a5bc7 commit 628145bCopy full SHA for 628145b
.github/scripts/prep_api_docs_build.py
@@ -82,6 +82,12 @@ def main():
82
and p["repo"] != "langchain-ai/langchain"
83
])
84
85
+ # Delete ones without a pyproject.toml
86
+ for partner in Path("langchain/libs/partners").iterdir():
87
+ if partner.is_dir() and not (partner / "pyproject.toml").exists():
88
+ print(f"Removing {partner} as it does not have a pyproject.toml")
89
+ shutil.rmtree(partner)
90
+
91
print("Library sync completed successfully!")
92
93
except Exception as e:
0 commit comments