Skip to content

Commit 83dbd5e

Browse files
committed
Update AGENTS.md to reflect usage of uv [skip ci]
- Add note about using uv for faster dependency installation - Update testing command to use 'uv pip install' - Document uv as the package manager in Code Style section
1 parent df87c88 commit 83dbd5e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

AGENTS.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ django CMS Versioning is a Django package that provides versioning capabilities
1313

1414
### Testing
1515
```bash
16-
# Install test dependencies
17-
pip install -r tests/requirements.txt
16+
# Install test dependencies (using uv for faster installation)
17+
uv pip install -r tests/requirements.txt
1818

1919
# Run all tests
2020
python setup.py test
@@ -89,6 +89,7 @@ python manage.py compilemessages
8989

9090
### Python
9191
- **Linter**: ruff (configured in pyproject.toml)
92+
- **Package manager**: uv (for faster dependency installation in CI and local development)
9293
- **Line length**: 120 characters
9394
- **Import style**: Use `isort` via ruff (combine-as-imports = true)
9495
- **Code quality**: Follows ruff rules including pycodestyle, pyflakes, flake8-bugbear, and pyupgrade

0 commit comments

Comments
 (0)