deps: ruff 0.16.1, ty 0.0.65 - #69
Merged
Merged
Conversation
Dev tooling only, both lockfile-level. Synced with --all-extras --all-groups throughout, never bare, so the venv keeps its extras and dependency groups. Gates: ruff check, ruff format --check, ty check, pytest (183 passed, 8 skipped) and vulture all clean. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Dependency movement only; no public API, signature, or wire format change, so this is a patch bump. Release notes belong in the GitHub Release body at tag time. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
uv.lock embeds the project's OWN version, so a pyproject.toml bump leaves the lock disagreeing with the manifest about what this package is. Nothing errors and no gate notices, exactly like the bun equivalent where `bun update` leaves the lock's embedded ranges stale. Run `uv lock` after any version bump, before committing. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Summary
Routine dev-tooling bumps from the workspace-wide maintenance sweep:
ruff0.16.0 to 0.16.1 andty0.0.63 to 0.0.65. Lockfile only, no source changes.Type of change
Public API
None. Both are lint/typecheck tooling; no exported type, signature, or wire format changes, so callers have no migration to make.
Test plan
Ran the repo's full Python gate set with exit codes read directly:
ruff checkclean,ruff format --checkclean at 21 files,ty checkclean,pytest183 passed with 8 skipped, andvulture --min-confidence 80clean over the package. Every sync used--all-extras --all-groupsrather than a bareuv sync, which would resolve base deps only and quietly strip the venv's extras and dependency groups.Checklist