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.
2 parents 555e1c3 + 8787667 commit 6a8e39fCopy full SHA for 6a8e39f
lib/matplotlib/transforms.py
@@ -720,8 +720,8 @@ def union(bboxes):
720
"""Return a `Bbox` that contains all of the given *bboxes*."""
721
if not len(bboxes):
722
raise ValueError("'bboxes' cannot be empty")
723
- # needed for 1.14.4 < numpy_version < 1.15
724
- # 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
725
with np.errstate(invalid='ignore'):
726
x0 = np.min([bbox.xmin for bbox in bboxes])
727
x1 = np.max([bbox.xmax for bbox in bboxes])
0 commit comments