You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
update README PyPI badge and install commands to use the pyproject distribution name arbiter-score
document that arbiter is the installed CLI command, not the package to install
keep docs/REPO_HEALTH.md aligned with the package identity
Validation
git diff --check
stale README/docs package-reference scan returned no matches
python3 -m pip index versions arbiter-score currently reports no matching distribution; python3 -m pip index versions arbiter reports a separate public distribution, so this PR avoids that ambiguity
Finding: README now makes the primary install path a package that is not currently published.
README.md:15-27 presents pip install arbiter-score and pip install "arbiter-score[analyzers]" as the main install commands. I verified the current package index from the review worktree:
python -m pip index versions arbiter-score
ERROR: No matching distribution found for arbiter-score
python -m pip index versions arbiter
arbiter (1.1.2)
Available versions: 1.1.2, 1.1.1, 1.1.0, 1.0.1, 1.0.0
The PR correctly avoids pointing users at the separate public arbiter project, and it matches pyproject.toml (name = "arbiter-score", CLI script arbiter). But until arbiter-score is actually published, the public README install section is still broken for users: the first command fails.
Recommended fix-up: keep the package identity note, but make source install the current primary path and label PyPI install as pending publication, or publish arbiter-score before treating pip install arbiter-score as current install guidance. docs/REPO_HEALTH.md:14 already says "PyPI-oriented package", and docs/REPO_HEALTH.md:62 references publish verification before PyPI publish, so this can be framed cleanly without reintroducing the wrong arbiter package.
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
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
arbiter-scorearbiteris the installed CLI command, not the package to installValidation
git diff --checkpython3 -m pip index versions arbiter-scorecurrently reports no matching distribution;python3 -m pip index versions arbiterreports a separate public distribution, so this PR avoids that ambiguityCloses #71