release: shinylive v0.10.9#222
Merged
Merged
Conversation
Bump shiny to 1.6.1 and htmltools to 0.6.1. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
shinywidgets switched to dynamic versioning (hatch-vcs), so the version is now in __version.py instead of __init__.py. Updated the Makefile to check __version.py first with a fallback to __init__.py. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The shinywidgets Makefile now requires uv, which isn't available in the shinylive CI environment. Use pip wheel --no-deps instead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…bpackage Makefiles Subpackage Makefiles may require tools (e.g. uv) not available in the shinylive CI environment. Using pip wheel --no-deps directly is simpler and consistent across all packages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace four different grep patterns with a single _get_version helper that checks __version.py, __init__.py, and _version.py. This handles packages using hatch-vcs (__version.py), setuptools (_version.py), or hardcoded versions (__init__.py) consistently. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <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.
Summary
Makefile improvements
pip wheel --no-depsfor all subpackage wheel builds instead of delegating to each subpackage'smake install. This avoids depending on whatever build tool each subpackage prefers (e.g. shinywidgets now requiresuv)._get_versionhelper that checks__version.py,__init__.py, and_version.pyconsistently. This handles packages using hatch-vcs dynamic versioning (shinywidgets) alongside packages with hardcoded versions.Test plan
make clean && make allbuilds successfully