Files
langgraph/libs/cli/examples/Makefile
T
Sydney RunkleandGitHub 228a08b966 ci: migrate to uv! (#4698)
* Migrate to `uv`
* Format `pyproject.toml` files properly
* Remove upper bounds on dependencies, and bounds on dev dependencies
(we should be using latest)
* Move to hatch for packaing

In the future we should:
* Set up dependabot / automate lockfile updates and tests
* Add tests for min compatible versions (I'll do this right after merge)
* Use dynamic versioning
* Bump `pydantic` to v2.11.4 in the lockfile, we have some tests failing
2025-05-15 17:39:14 -07:00

14 lines
265 B
Makefile

.PHONY: run_w_override
run:
uv run langgraph up --watch --no-pull
run_faux:
cd graphs && uv run langgraph up --no-pull
run_graphs_reqs_a:
cd graphs_reqs_a && uv run langgraph up --no-pull
run_graphs_reqs_b:
cd graphs_reqs_b && uv run langgraph up --no-pull