Skip to content

Axes.inset_axes - warning message removed #27665

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

Merged
merged 15 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions doc/users/next_whats_new/inset_axes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
'Axes.inset_axes' is no longer experimental
-------------------------

Axes.inset_axes is now cosidered stable for use.


~~~~~~~~~~~~~
1 change: 0 additions & 1 deletion lib/matplotlib/_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,6 @@ def my_func(*args, **kwargs):
[lambda old1, old2: locals(), lambda new: locals()],
*args, **kwargs)
if "old1" in params:
warn_deprecated(...)
old1, old2 = params.values() # note that locals() is ordered.
else:
new, = params.values()
Expand Down
4 changes: 1 addition & 3 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,9 +331,7 @@ def inset_axes(self, bounds, *, transform=None, zorder=5, **kwargs):
"""
Add a child inset Axes to this existing Axes.

Warnings
--------
This method is experimental as of 3.0, and the API may change.


Parameters
----------
Expand Down