Skip to content

Commit f00bc9b

Browse files
committed
use uv
1 parent 9845a9d commit f00bc9b

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

AGENTS.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ codeflash/
2727

2828
## Critical Development Patterns
2929

30-
### Use uv, not pip
30+
### Use uv, NEVER pip
31+
**NEVER use `pip install` or `pip` commands.** This project uses `uv` exclusively for package management.
3132
```bash
32-
uv sync # Install dependencies
33-
uv sync --group dev # Dev dependencies
34-
uv run pytest # Run commands
35-
uv add package # Add packages
33+
uv sync # Install dependencies (NOT pip install -r requirements.txt)
34+
uv sync --group dev # Dev dependencies (NOT pip install -e .)
35+
uv run pytest # Run commands (NOT python -m pytest)
36+
uv add package # Add packages (NOT pip install package)
3637
```
3738

3839
### Use libcst, not ast

0 commit comments

Comments
 (0)