-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Remove several more deprecations #18753
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
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7e89381
Remove more deprecations.
QuLogic 01b3e51
Remove deprecated 'smart bounds' functionality.
QuLogic 1a07b9f
Remove deprecated parameters.
QuLogic 96a5022
Remove deprecated toolkit colorbar implementation.
QuLogic b1100ab
Add missing obj_type to rcParam deprecation.
QuLogic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
``Axes`` methods and properties | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
- ``axes.Axes.get_data_ratio_log`` | ||
- ``axes.SubplotBase.rowNum``; use ``ax.get_subplotspec().rowspan.start`` | ||
instead | ||
- ``axes.SubplotBase.colNum``; use ``ax.get_subplotspec().colspan.start`` | ||
instead | ||
- the *verts* parameter to ``scatter`` (use *marker* instead) | ||
- Passing more than one positional argument to `~matplotlib.axes.Axes.axis` | ||
will now raise an error. | ||
- Passing ``"range"`` to the *whis* parameter of `.Axes.boxplot` and | ||
`.cbook.boxplot_stats` to mean "the whole data range" is no longer | ||
supported. | ||
- Passing scalars to parameter *where* in `.axes.Axes.fill_between` and | ||
`.axes.Axes.fill_betweenx` is no longer accepted and non-matching sizes now | ||
raise a `ValueError`. | ||
|
||
``dates`` functions | ||
~~~~~~~~~~~~~~~~~~~ | ||
- ``dates.mx2num`` | ||
|
||
``quiver`` methods | ||
~~~~~~~~~~~~~~~~~~ | ||
|
||
- ``quiver.QuiverKey.quiverkey_doc`` has been removed; use | ||
``quiver.QuiverKey.__init__.__doc__`` instead. | ||
|
||
Smart bounds | ||
~~~~~~~~~~~~ | ||
|
||
The "smart bounds" functionality on `~.axis.Axis` and `.Spine` has been | ||
deleted, and the following methods are removed: | ||
|
||
- ``Axis.set_smart_bounds`` and ``Axis.get_smart_bounds`` | ||
- ``Spine.set_smart_bounds`` and ``Spine.get_smart_bounds`` | ||
|
||
Testing | ||
~~~~~~~ | ||
The *switch_backend_warn* parameter to ``matplotlib.test`` has no effect and | ||
has been removed. | ||
|
||
``tight_layout()`` | ||
~~~~~~~~~~~~~~~~~~ | ||
The *renderer* parameter to `.Figure.tight_layout` has been removed; this | ||
method now always uses the renderer instance cached on the `.Figure`. | ||
|
||
``axes_grid1`` | ||
~~~~~~~~~~~~~~ | ||
The ``mpl_toolkits.axes_grid1.colorbar`` module and its colorbar implementation | ||
have been removed in favor of :mod:`matplotlib.colorbar`. Additionally: | ||
|
||
- The *locator* parameter to ``colorbar()`` has been removed in favor of its | ||
synonym *ticks* (which already existed previously, and is consistent with | ||
:mod:`matplotlib.colorbar`). | ||
- The ``mpl_toolkits.legacy_colorbar`` rcParam has no effect and also has been | ||
removed. |
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
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.
Note, this was incorrectly documented as removed, but it was only deprecated.