diff --git a/.github/scripts/check_diff.py b/.github/scripts/check_diff.py index a785ca0b0d8..9caa0aaea71 100644 --- a/.github/scripts/check_diff.py +++ b/.github/scripts/check_diff.py @@ -306,7 +306,9 @@ if __name__ == "__main__": if not filename.startswith(".") ] != ["README.md"]: dirs_to_run["test"].add(f"libs/partners/{partner_dir}") - dirs_to_run["codspeed"].add(f"libs/partners/{partner_dir}") + # Skip codspeed for partners without benchmarks or in IGNORED_PARTNERS + if partner_dir not in IGNORED_PARTNERS: + dirs_to_run["codspeed"].add(f"libs/partners/{partner_dir}") # Skip if the directory was deleted or is just a tombstone readme elif file.startswith("libs/"): # Check if this is a root-level file in libs/ (e.g., libs/README.md) diff --git a/libs/partners/huggingface/pyproject.toml b/libs/partners/huggingface/pyproject.toml index bd248902c52..82013e2bd19 100644 --- a/libs/partners/huggingface/pyproject.toml +++ b/libs/partners/huggingface/pyproject.toml @@ -7,12 +7,12 @@ authors = [] license = { text = "MIT" } requires-python = ">=3.10.0,<4.0.0" dependencies = [ - "langchain-core>=0.3.76,<2.0.0", + "langchain-core>=1.0.0,<2.0.0", "tokenizers>=0.19.1,<1.0.0", "huggingface-hub>=0.33.4,<1.0.0", ] name = "langchain-huggingface" -version = "1.0.0a1" +version = "1.0.0" description = "An integration package connecting Hugging Face and LangChain." readme = "README.md" diff --git a/libs/partners/huggingface/uv.lock b/libs/partners/huggingface/uv.lock index d2a43c19f85..fb18fb9d40f 100644 --- a/libs/partners/huggingface/uv.lock +++ b/libs/partners/huggingface/uv.lock @@ -904,7 +904,7 @@ wheels = [ [[package]] name = "langchain-core" -version = "1.0.0rc3" +version = "1.0.0" source = { editable = "../../core" } dependencies = [ { name = "jsonpatch" }, @@ -962,7 +962,7 @@ typing = [ [[package]] name = "langchain-huggingface" -version = "1.0.0a1" +version = "1.0.0" source = { editable = "." } dependencies = [ { name = "huggingface-hub" }, @@ -1040,7 +1040,7 @@ typing = [ [[package]] name = "langchain-tests" -version = "1.0.0rc1" +version = "1.0.0" source = { editable = "../../standard-tests" } dependencies = [ { name = "httpx" },