1Changes in 1.5.2
2================
3
4
5Default Behavior Changes
6------------------------
7
8Changed default ``autorange`` behavior in boxplots
9~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11Prior to v1.5.2, the whiskers of boxplots would extend to the minimum
12and maximum values if the quartiles were all equal (i.e., Q1 = median
13= Q3). This behavior has been disabled by default to restore consistency
14with other plotting packages.
15
16To restore the old behavior, simply set ``autorange=True`` when
17calling ``plt.boxplot``.
18