chore: update rhiza to v0.17.0 - #752
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s Rhiza template reference and syncs downstream template changes, including Makefile behavior and GitHub workflow updates.
Changes:
- Bump Rhiza template reference to
v0.17.0and update the template lock metadata. - Update the book
serveMakefile target to useuv run python -m http.serverand add a regression test. - Refresh Rhiza GitHub workflow stubs and replace the release workflow stub with a fully inlined workflow.
Reviewed changes
Copilot reviewed 10 out of 11 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
.rhiza/tests/api/test_makefile_targets.py |
Adds a test asserting make serve uses uv run python -m http.server. |
.rhiza/template.yml |
Bumps the Rhiza template branch to v0.17.0. |
.rhiza/template.lock |
Updates the synced template SHA/ref and sync timestamp. |
.rhiza/make.d/book.mk |
Switches serve target from python3 -m http.server to ${UV_BIN} run python -m http.server. |
.github/workflows/rhiza_weekly.yml |
Updates reusable workflow reference to @v0.16.0. |
.github/workflows/rhiza_sync.yml |
Updates reusable workflow reference to @v0.16.0. |
.github/workflows/rhiza_release.yml |
Replaces reusable-workflow stub with an in-repo release workflow (tag validation, build, draft release, optional publish, finalise). |
.github/workflows/rhiza_marimo.yml |
Updates reusable workflow reference to @v0.16.0. |
.github/workflows/rhiza_codeql.yml |
Updates reusable workflow reference to @v0.16.0. |
.github/workflows/rhiza_ci.yml |
Updates reusable workflow reference to @v0.16.0. |
.github/workflows/rhiza_book.yml |
Updates reusable workflow reference to @v0.16.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+156
to
+160
| - name: Configure git auth for private packages | ||
| uses: jebel-quant/rhiza/.github/actions/configure-git-auth@v0.15.2 | ||
| with: | ||
| token: ${{ secrets.GH_PAT }} | ||
|
|
Comment on lines
+351
to
+357
| # repository-url and password only used for custom feeds, not for PyPI with OIDC | ||
| - name: Publish to PyPI | ||
| if: ${{ steps.check_dist.outputs.should_publish == 'true' }} | ||
| uses: pypa/gh-action-pypi-publish@release/v1 | ||
| with: | ||
| packages-dir: dist/ | ||
| skip-existing: true |
| name: Finalise Release | ||
| runs-on: ubuntu-latest | ||
| needs: [tag, pypi, devcontainer] | ||
| if: needs.pypi.result == 'success' || needs.devcontainer.result == 'success' |
| - name: "Sync the virtual environment for ${{ github.repository }}" | ||
| shell: bash | ||
| run: | | ||
| export UV_EXTRA_INDEX_URL="${{ secrets.uv_extra_index_url }}" |
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
template-branchtov0.17.0in.rhiza/template.yml.rhiza/.rhiza-versionto0.16.1make syncto apply upstream template changes