Skip to content

Commit a194ae6

Browse files
authored
release(huggingface): 1.0.0 (#33572)
1 parent 4d62313 commit a194ae6

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/scripts/check_diff.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,9 @@ def _get_configs_for_multi_dirs(
306306
if not filename.startswith(".")
307307
] != ["README.md"]:
308308
dirs_to_run["test"].add(f"libs/partners/{partner_dir}")
309-
dirs_to_run["codspeed"].add(f"libs/partners/{partner_dir}")
309+
# Skip codspeed for partners without benchmarks or in IGNORED_PARTNERS
310+
if partner_dir not in IGNORED_PARTNERS:
311+
dirs_to_run["codspeed"].add(f"libs/partners/{partner_dir}")
310312
# Skip if the directory was deleted or is just a tombstone readme
311313
elif file.startswith("libs/"):
312314
# Check if this is a root-level file in libs/ (e.g., libs/README.md)

libs/partners/huggingface/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ authors = []
77
license = { text = "MIT" }
88
requires-python = ">=3.10.0,<4.0.0"
99
dependencies = [
10-
"langchain-core>=0.3.76,<2.0.0",
10+
"langchain-core>=1.0.0,<2.0.0",
1111
"tokenizers>=0.19.1,<1.0.0",
1212
"huggingface-hub>=0.33.4,<1.0.0",
1313
]
1414
name = "langchain-huggingface"
15-
version = "1.0.0a1"
15+
version = "1.0.0"
1616
description = "An integration package connecting Hugging Face and LangChain."
1717
readme = "README.md"
1818

libs/partners/huggingface/uv.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)