chore(infra): bump langchain-tests floor to 1.1.9 (#37610)

Bumps the `langchain-tests` minimum across the monorepo from `1.0.0` to
`1.1.9` and adds a partner-level `Makefile` so partner lockfiles can be
regenerated in one command, matching the existing convention under
`libs/`.
This commit is contained in:
Mason Daugherty
2026-05-21 13:36:22 -05:00
committed by GitHub
parent ebc1880444
commit aef86c476d
34 changed files with 53 additions and 33 deletions

20
libs/partners/Makefile Normal file
View File

@@ -0,0 +1,20 @@
# Makefile for libs/partners/ directory
# Contains targets that operate across all partner packages
PARTNER_DIRS = anthropic chroma deepseek exa fireworks groq huggingface mistralai nomic ollama openai openrouter perplexity qdrant xai
.PHONY: lock check-lock
# Regenerate lockfiles for all partner packages
lock:
@for dir in $(PARTNER_DIRS); do \
echo "=== Locking $$dir ==="; \
(cd $$dir && uv lock); \
done
# Verify all lockfiles are up-to-date
check-lock:
@for dir in $(PARTNER_DIRS); do \
echo "=== Checking $$dir ==="; \
(cd $$dir && uv lock --check) || exit 1; \
done