-
-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bokeh 3.3 support #5923
Bokeh 3.3 support #5923
Conversation
Codecov Report
@@ Coverage Diff @@
## main #5923 +/- ##
==========================================
- Coverage 88.55% 88.55% -0.01%
==========================================
Files 313 313
Lines 65069 65078 +9
==========================================
+ Hits 57624 57629 +5
- Misses 7445 7449 +4
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 3 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Running with Bokeh 3.3, I get the following errors:
|
@@ -524,6 +524,8 @@ def _axis_props(self, plots, subplots, element, ranges, pos, *, dim=None, | |||
else not util.isfinite(el) for el in [v0, v1] | |||
): | |||
dim_range = range_type() | |||
elif issubclass(range_type, FactorRange): | |||
dim_range = range_type(name=dim.name if dim else None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@philippjfr, do you have any fear about this change? By not setting start and end on FactorRange
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
None, whatsoever. Looks fine.
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Fixes #5756
With the merging bokeh/bokeh#13204, we can now support BoxEditTool again.