Release prep: CI/coverage fix, repo cleanup, CONTRIBUTING - #22
Merged
Conversation
… cleanup
- CI: `if: ${{ matrix.version }} == '1'` interpolated to a non-empty
string and was always truthy, so coverage uploaded on every matrix
entry. Use `if: matrix.version == '1'` so only the release version
uploads.
- Remove stale .travis.yml (CI moved to GitHub Actions long ago).
- .gitignore: ignore .pytest_cache/ and __pycache__/ from PythonCall
testing.
- README: the lowercase-naming example claimed `rectangle` creates a
Polygon, but it returns a Rectangle. Use `n_gon`, which actually
returns a Polygon, to illustrate the convention.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Basic contributor guide: issue reporting, dev setup, running the test suite (incl. Aqua/JET), coding conventions, PR expectations, and a note on AI-assisted contributions consistent with Julia General registry guidance. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 <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.
Maintenance pass ahead of a minor release.
if: ${{ matrix.version }} == '1'interpolated to a non-empty (always-truthy) string, so coverage uploaded on every matrix entry. Changed toif: matrix.version == '1'..travis.yml— CI moved to GitHub Actions long ago..gitignore: ignore.pytest_cache/and__pycache__/from PythonCall testing (also fixed a missing trailing newline that had glued*.covto a new entry).rectanglecreates aPolygon, but it returns aRectangle. Switched the example ton_gon, which actually returns aPolygon.CONTRIBUTING.md: issue reporting, dev setup, running tests (incl. Aqua/JET), coding conventions, PR expectations, and an AI-assisted-contributions note aligned with Julia General registry guidance.todo.txt: planning moves to GitHub issues. The one open item it tracked is now RegionIntersection/RegionUnion do not promote mixed real types #21.🤖 Generated with Claude Code