Skip to content

Commit bcd32ff

Browse files
committed
add versioning directives, including empty + description
melissawm <melissawm@gmail.com>
1 parent f2e2f77 commit bcd32ff

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

lib/matplotlib/axes/_axes.py

+5
Original file line numberDiff line numberDiff line change
@@ -2648,6 +2648,9 @@ def bar_label(self, container, labels=None, *, fmt="%g", label_type="edge",
26482648
When *fmt* is a string and can be interpreted in both formats,
26492649
%-style takes precedence over {}-style.
26502650
2651+
.. versionadded:: 3.7
2652+
support for {}-style format string and callables
2653+
26512654
label_type : {'edge', 'center'}, default: 'edge'
26522655
The label type. Possible values:
26532656
@@ -3329,6 +3332,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
33293332
sizes. By default, this draws the data markers/lines as well the
33303333
errorbars. Use fmt='none' to draw errorbars without any data markers.
33313334
3335+
.. versionadded:: 3.7
3336+
33323337
Parameters
33333338
----------
33343339
x, y : float or array-like

lib/mpl_toolkits/axes_grid1/parasite_axes.py

+3
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ def get_aux_axes(
106106
Despite this method's name, this should actually be thought of as an
107107
``add_parasite_axes`` method.
108108
109+
.. versionchanged:: 3.7
110+
defaults to same base axes class as host axes
111+
109112
Parameters
110113
----------
111114
tr : `~matplotlib.transforms.Transform` or None, default: None

0 commit comments

Comments
 (0)