[CHORE] Drop unused __about__.py files from Python packages#551
Merged
Conversation
Seth Fitzsimmons (sethfitz)
temporarily deployed
to
staging
July 10, 2026 23:02 — with
GitHub Actions
Inactive
🗺️ Schema reference docs preview is live!
Note ♻️ This preview updates automatically with each push to this PR. |
Collaborator
Author
|
The failing |
Base automatically changed from
508-devops-branching-strategy---phase-2a---internal-versions
to
main
July 13, 2026 17:03
Collaborator
|
Seth Fitzsimmons (@sethfitz) One check failing:
Looks like a single example test failed, and the problem looks like a Python output style change between 3.10 and 3.14? |
Seth Fitzsimmons (sethfitz)
force-pushed
the
drop-about-py
branch
from
July 15, 2026 16:02
3141012 to
efa845f
Compare
Seth Fitzsimmons (sethfitz)
temporarily deployed
to
staging
July 15, 2026 16:03 — with
GitHub Actions
Inactive
Seth Fitzsimmons (sethfitz)
marked this pull request as ready for review
July 15, 2026 16:04
PR #534 moved package versions to static declarations in pyproject.toml and reduced __about__.py to thin shims that derive __version__ from importlib.metadata. Nothing in packages/, .github/, or the Makefile references __about__ or __version__, so the shims are dead code. Signed-off-by: Seth Fitzsimmons <seth@mojodna.net>
Victor Schappert (vcschapp)
approved these changes
Jul 15, 2026
Victor Schappert (vcschapp)
temporarily deployed
to
staging
July 15, 2026 16:26 — with
GitHub Actions
Inactive
TristanDiet-TomTom
self-requested a review
July 15, 2026 16:27
TristanDiet-TomTom
approved these changes
Jul 15, 2026
Seth Fitzsimmons (sethfitz)
force-pushed
the
drop-about-py
branch
from
July 15, 2026 16:29
f6d2d81 to
1abba81
Compare
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.
Closes #549.
Deletes the 12
__about__.pyversion shims. #534 moved every package to a staticversioninpyproject.tomland rewrote the shims to readimportlib.metadata; nothing references__about__or__version__anywhere in the tree (verified acrosspackages/,.github/, and theMakefileon currentmain).#534 has merged, so this PR now targets
mainand drops the shims as dead code.