We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8990a43 commit 8787667Copy full SHA for 8787667
lib/matplotlib/transforms.py
@@ -695,8 +695,8 @@ def union(bboxes):
695
"""Return a `Bbox` that contains all of the given *bboxes*."""
696
if not len(bboxes):
697
raise ValueError("'bboxes' cannot be empty")
698
- # needed for 1.14.4 < numpy_version < 1.15
699
- # can remove once we are at numpy >= 1.15
+ # needed for 1.14.4 < numpy_version < 1.16
+ # can remove once we are at numpy >= 1.16
700
with np.errstate(invalid='ignore'):
701
x0 = np.min([bbox.xmin for bbox in bboxes])
702
x1 = np.max([bbox.xmax for bbox in bboxes])
0 commit comments