-
-
Notifications
You must be signed in to change notification settings - Fork 532
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
compat: Bokeh 3.7 #7724
base: main
Are you sure you want to change the base?
compat: Bokeh 3.7 #7724
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7724 +/- ##
==========================================
- Coverage 87.04% 86.60% -0.45%
==========================================
Files 346 346
Lines 52711 52711
==========================================
- Hits 45883 45651 -232
- Misses 6828 7060 +232 ☔ View full report in Codecov by Sentry. |
@@ -123,7 +123,7 @@ export class HTMLView extends PanelMarkupView { | |||
return [...super.stylesheets(), html_css] | |||
} | |||
|
|||
protected rerender() { |
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.
This one scares me and is probably not backward compatible. rerender
used to be a panel only thing, seems like there's now a method in Bokeh that probably does something slightly different:
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.
Yeah, was not sure about this one. If we still want to be backward compatible, can't we just rename the function?
Bokeh 3.7 RC is soon gonna be released.
This tests the latest dev release to see how much work we need.
EDIT: It is very backward compatible.