ci: black lint check + Python 3.9-3.12 test matrix#32
Merged
Conversation
- .github/workflows/python-test.yml: new `lint` job running `black --check` over kaievolve/tests/scripts, and a test matrix across Python 3.9/3.10/3.11/3.12 (previously 3.9 only). black pinned to 25.1.0 to match the formatting the repo was written with. - black-format the recently-merged --init-from additions (cli.py, test_cli_init_from.py) so the new lint check is green. Co-Authored-By: Claude Fable 5 <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.
Launch-readiness CI pass.
CI (
.github/workflows/python-test.yml)lintjob —black --check --line-length 100overkaievolve/,tests/,scripts/(black pinned to25.1.0). Previously there was no lint gate even though the repo is black-formatted.fail-fast: falseso every version reports.requires-pythonis>=3.9, so this exercises the full supported range. Heads-up: this newly runs 3.10–3.12 in CI; if any version surfaces a version-specific issue it'll show here (3.9 was already green; I verified the suite green locally on 3.12).Formatting
black-formatted the just-merged--init-fromadditions (cli.py,tests/test_cli_init_from.py) — they were the only files not black-clean, so this makes the new lint job pass.Verified
black --checkclean acrosskaievolve/tests/scripts(90 files).🤖 Generated with Claude Code