@@ -3875,9 +3875,11 @@ def boxplot(self, x, notch=None, sym=None, vert=None,
3875
3875
control is provided by the *flierprops* parameter.
3876
3876
3877
3877
vert : bool, optional
3878
- .. deprecated:: 3.10
3878
+ .. deprecated:: 3.11
3879
3879
Use *orientation* instead.
3880
3880
3881
+ This is a pending deprecation for 3.10, with full deprecation
3882
+ in 3.11 and removal in 3.13.
3881
3883
If this is given during the deprecation period, it overrides
3882
3884
the *orientation* parameter.
3883
3885
@@ -4222,9 +4224,11 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=None,
4222
4224
The default is ``0.5*(width of the box)``, see *widths*.
4223
4225
4224
4226
vert : bool, optional
4225
- .. deprecated:: 3.10
4227
+ .. deprecated:: 3.11
4226
4228
Use *orientation* instead.
4227
4229
4230
+ This is a pending deprecation for 3.10, with full deprecation
4231
+ in 3.11 and removal in 3.13.
4228
4232
If this is given during the deprecation period, it overrides
4229
4233
the *orientation* parameter.
4230
4234
@@ -4361,9 +4365,10 @@ def merge_kw_rc(subkey, explicit, zdelta=0, usemarker=True):
4361
4365
vert = mpl .rcParams ['boxplot.vertical' ]
4362
4366
else :
4363
4367
_api .warn_deprecated (
4364
- "3.10 " ,
4368
+ "3.11 " ,
4365
4369
name = "vert: bool" ,
4366
- alternative = "orientation: {'vertical', 'horizontal'}"
4370
+ alternative = "orientation: {'vertical', 'horizontal'}" ,
4371
+ pending = True ,
4367
4372
)
4368
4373
if vert is False :
4369
4374
orientation = 'horizontal'
@@ -8642,10 +8647,11 @@ def violin(self, vpstats, positions=None, vert=None,
8642
8647
# vert takes precedence.
8643
8648
if vert is not None :
8644
8649
_api .warn_deprecated (
8645
- "3.10 " ,
8650
+ "3.11 " ,
8646
8651
name = "vert: bool" ,
8647
- alternative = "orientation: {'vertical', 'horizontal'}"
8648
- )
8652
+ alternative = "orientation: {'vertical', 'horizontal'}" ,
8653
+ pending = True ,
8654
+ )
8649
8655
orientation = 'vertical' if vert else 'horizontal'
8650
8656
_api .check_in_list (['horizontal' , 'vertical' ], orientation = orientation )
8651
8657
0 commit comments