mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 10:17:00 +00:00
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/`.
21 lines
590 B
Makefile
21 lines
590 B
Makefile
# 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
|