Add Ruff to missing dev dependency groups and refresh lockfiles#6178
Merged
cobycloud merged 5 commits intoMar 20, 2026
Merged
Conversation
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.
Motivation
Failed to spawn: ruffbecause several packages lacked Ruff in their dev dependency groups, so add a consistent dev linter dependency across packages to enableruff-based formatting and checks.Description
[dependency-groups].deventry withruff>=0.11.0(or appended"ruff>=0.11.0") to the following packages:pkgs/experimental/swarmauri_canon_http,pkgs/experimental/swarmauri_parser_asn1,pkgs/experimental/tigrbl_engine_csv,pkgs/experimental/tigrbl_engine_inmemcache,pkgs/experimental/tigrbl_engine_inmemory,pkgs/experimental/tigrbl_engine_membloom,pkgs/experimental/tigrbl_engine_numpy,pkgs/experimental/tigrbl_engine_pyspark,pkgs/experimental/tigrbl_engine_xlsx, andpkgs/standards/tigrbl_tests.uv.lockfiles where lockfiles were refreshed during lint runs, addingruffentries and dev metadata inpkgs/experimental/tigrbl_engine_inmemcache,pkgs/experimental/tigrbl_engine_inmemory, andpkgs/experimental/tigrbl_engine_membloom.uv run --directory <dir> --package <name> ruff format .anduv run --directory <dir> --package <name> ruff check . --fixas part of validation.Testing
uv run --directory ... --package ... ruff format .anduv run --directory ... --package ... ruff check . --fixfor each changed package per the contribution guide; most packages completed successfully with formatting and checks applied.pkgs/experimental/swarmauri_canon_httpfailed to runruff formatdue to a pre-existing workspace source/member mismatch in its package metadata, not related to the added dev dependency.pkgs/experimental/swarmauri_parser_asn1passedruff formatbutruff check . --fixexited with pre-existing F403/F405 (star-import) lint findings that are unrelated to this metadata-only change.pytestorpeagencommands were executed as instructed.Codex Task