[codex] Support bqplot 0.12 and 0.13 WebGL paths#186
Merged
astrofrog merged 6 commits intoglue-viz:mainfrom May 7, 2026
Merged
[codex] Support bqplot 0.12 and 0.13 WebGL paths#186astrofrog merged 6 commits intoglue-viz:mainfrom
astrofrog merged 6 commits intoglue-viz:mainfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #186 +/- ##
=======================================
Coverage 39.81% 39.81%
=======================================
Files 8 8
Lines 211 211
=======================================
Hits 84 84
Misses 127 127 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
608c1a0 to
981efa2
Compare
981efa2 to
3ab3742
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.
This PR keeps bqplot-image-gl usable with both bqplot 0.12 and bqplot 0.13.
bqplot 0.13 moved the shared WebGL figure setup out of bqplot and into bqplot-gl. bqplot-image-gl still used the older bqplot 0.12 WebGL API directly, so it could render with 0.12 but failed against 0.13 unless the new renderer hooks were initialized separately.
The frontend now detects the available figure API at runtime. For bqplot 0.12, it calls the existing createWebGLRenderer/update_gl path and keeps using render_gl. For bqplot 0.13, it dynamically loads bqplot-gl, calls its exported initializeBqplotFigure helper, registers the image mark with the shared WebGL mark list, and exposes renderGL as the 0.13 render entry point. The scale helpers also bridge snake_case and camelCase APIs so the same frontend code works across the two bqplot lines.
Packaging changes:
This depends on bqplot/bqplot-gl#29 for the bqplot 0.13 path. That PR exports initializeBqplotFigure and includes shader files in the bqplot-gl npm package.
Validation performed locally with Solara using --no-open: