Conversation
- Migrate `pyproject.toml` to PEP 621 and PEP 735 standard using `[project]` and `[dependency-groups]`. - Update `[build-system]` to use `hatchling`. - Replace `poetry` with `uv` in `Makefile`, `Dockerfile`, and GitHub Actions. - Update documentation and `.gitignore` for `uv`. - Generate `uv.lock` and remove `poetry.lock`. - Improve `tests/test_app.py` for better coverage and verification.
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
This PR migrates the project from Poetry to
uvfor dependency management and packaging.Key changes:
pyproject.toml: Modernized using PEP 621 for project metadata and PEP 735 for dependency groups. Switched build backend tohatchling.uv.lock: Generated new lock file and removedpoetry.lock.Makefile: Updated all targets to useuv sync,uv run, etc.Dockerfile: Updated to use the officialuvinstaller image anduv run..github/workflows/check.yml: Updated to useastral-sh/setup-uvfor faster and more reliable CI.README.md,CONTRIBUTING.md, andAGENTS.mdto reflect the switch touv..gitignore: Updated to ignore.venvand handleuv.lockcorrectly.tests/test_app.py: Updated with a real test case to ensure the migration is working correctly.PR created automatically by Jules for task 1175086704523201381 started by @amrabed