Open
Conversation
- Converted pyproject.toml to PEP 621 [project] format with package=false - Replaced poetry.lock with uv.lock (generated via uvx migrate-to-uv) - Replaced tests-poetry.yml with tests.yml using astral-sh/setup-uv@v5 - Bumped actions/checkout v5 -> v6 - Bumped typer ^0.21.1 -> >=0.25.0, setuptools ^80.10.2 -> >=82.0.0 - Updated template pre-commit hooks: ruff v0.15.12, isort 8.0.1, pyupgrade v3.21.2 - Updated Dockerfile__uv runtime image to python:3.14-slim-bookworm
- Add lint job to tests.yml (ruff check + format --check on hooks/ and tests/) - Add ruff>=0.15.12 to dev dependencies with [tool.ruff] config - Fix 21 existing violations: deprecated typing imports, Optional -> X|None, unsorted imports, unnecessary open mode argument
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
lintjob in CI (tests.yml) runsruff checkandruff format --checkonhooks/andtests/on every push and PR.ruff>=0.15.12to dev dependencies with[tool.ruff]config (excludes Jinja2 template files).Changed
pyproject.tomlconverted to PEP 621[project]format,poetry.lockreplaced byuv.lock, GitHub Actions workflow updated to useastral-sh/setup-uv@v5(viauvx migrate-to-uv).tests-poetry.yml→tests.yml; updated badge in README.actions/checkoutfrom v5 to v6 in CI.typerfrom^0.21.1to>=0.25.0,setuptoolsfrom^80.10.2to>=82.0.0(Renovate).astral-sh/ruff-pre-commitv0.14.14 → v0.15.12,pycqa/isort6.1.0 → 8.0.1,asottile/pyupgradev3.20.0 → v3.21.2 (Renovate).python:3.13-slim-bookwormtopython:3.14-slim-bookworm(Renovate).