Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Remove deprecations: is_bbox and more#30067
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
``TransformNode.is_bbox`` | ||
^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
... is removed. Instead check the object using ``isinstance(..., BboxBase)``. | ||
``rcsetup.interactive_bk``, ``rcsetup.non_interactive_bk`` and ``rcsetup.all_backends`` | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
... are removed and replaced by ``matplotlib.backends.backend_registry.list_builtin`` | ||
with the following arguments | ||
- ``matplotlib.backends.BackendFilter.INTERACTIVE`` | ||
- ``matplotlib.backends.BackendFilter.NON_INTERACTIVE`` | ||
- ``None`` | ||
``BboxTransformToMaxOnly`` | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
... is removed. If you rely on this, please make a copy of old the code. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I think you can replace it with a | ||
*interval* parameter of ``TimerBase.start`` | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
The timer interval parameter can no longer be set while starting it. The interval can be specified instead in the timer constructor, or by setting the timer.interval attribute. |
Uh oh!
There was an error while loading.Please reload this page.