docs: finish pylings → pythonlings rename in CLAUDE.md#26
Merged
Conversation
release: v0.3.0 — rename to pythonlings
The rename shipped in published 0.3.0 (package, dist, and the pythonlings command), but CLAUDE.md still documented the old pylings command, package paths, stylesheet, and entry point. Update them so contributors and agents run the command that actually ships. Bump to 0.3.1 (docs/packaging cleanup, no behavior change) and add the CHANGELOG entry. The unrelated pylings PyPI package belongs to a different project; pythonlings is the only command this project ships. Closes #24
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
cli.py hardcoded __version__ = "0.3.0" as a second version source separate from pyproject.toml, so 'pythonlings --version' reported the wrong number after the 0.3.1 bump. Read the version from installed package metadata instead, with a source-checkout fallback, so it can never drift from pyproject again. Surfaced while running the RELEASE.md pre-release checklist for 0.3.1.
This was referenced Jun 20, 2026
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
The
pylings → pythonlingsrename shipped in published 0.3.0 (the package directory, the PyPI dist, and thepythonlingsconsole command). ButCLAUDE.md— the one doc the rename missed — still instructed contributors and agents to run the oldpylingscommand and referencedpylings/package paths. This corrects them and cuts a 0.3.1 patch.Changes
CLAUDE.md— 7 stalepylingsreferences →pythonlings: the smoke-test command, the manual-testing flows, the package paths,pythonlings.tcss, the entry point, and the.pythonlings/state dir. (The line noting the unrelatedpylingsPyPI package is intentionally kept.)pyproject.toml+Readme.mdstatus badge —0.3.0 → 0.3.1.CHANGELOG.md— new[0.3.1]entry.Why patch, not minor
The breaking command rename already reached users in published
pythonlings 0.3.0. This release changes only documentation and version metadata — no code, CLI, or public-API change — so under the 0.x convention (breaking → minor, backward-compatible → patch) it's a patch.Verification
python -m pytest -q→ 123 passedpythonlings --root tests/fixtures/passing_curriculum verify→ bundled solutions passpythonlingscommand to this repo; the oldpylingscommand no longer exists in the env.Closes #24