chore: standardize packaging metadata and docs (CI sync, classifiers, banner) - #11
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
- Add python-versions-sync workflow and supporting sync script under
.github/ to keep supported Python versions in sync.
- pyproject.toml classifiers:
* drop "Programming Language :: Python :: 3 :: Only" (redundant with
requires-python = ">=3.10")
* drop "Operating System :: OS Independent" (spinterp ships a compiled
Fortran extension, so wheels are platform-specific)
* add "Programming Language :: Fortran"
- Add the spinterp banner to docs/assets/ and show it at the top of
README.md and docs/index.md.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
saudzahirr
force-pushed
the
chore/standardize-packaging-and-docs
branch
from
August 18, 2026 10:17
566f1c8 to
2d518ce
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.



Standardizes packaging metadata and docs presentation for
spinterp.Changes
CI
.github/workflows/python-versions-sync.ymland.github/scripts/sync_python_versions.py(canonical org-wide files, copied verbatim) to keep declared Python versions in sync.Packaging (
pyproject.tomlclassifiers)Programming Language :: Python :: 3 :: Only—requires-python = ">=3.10"already states the supported range, so the marker is redundant.Operating System :: OS Independent.spinterpbuilds a compiled Fortran extension via meson-python, so its wheels are platform-specific and the classifier was misleading. The explicitWindows/POSIX/Unix/MacOSclassifiers are unchanged.Programming Language :: Fortran(no version attached), directly afterProgramming Language :: Python.validate-pyprojectpasses against the edited file.Docs
docs/assets/spinterp-banner.png.README.md(docs/assets/spinterp-banner.png) anddocs/index.md(assets/spinterp-banner.png).The H1 heading was already
# spinterp, so no title change was needed. No package name, imports, badge URLs, or repository URLs were touched.🤖 Generated with Claude Code