8000 Update a comment re: minimum version of numpy working around bug. · matplotlib/matplotlib@8787667 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8787667

Browse files
committed
Update a comment re: minimum version of numpy working around bug.
1 parent 8990a43 commit 8787667

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/transforms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,8 +695,8 @@ def union(bboxes):
695695
"""Return a `Bbox` that contains all of the given *bboxes*."""
696696
if not len(bboxes):
697697
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
698+
# needed for 1.14.4 < numpy_version < 1.16
699+
# can remove once we are at numpy >= 1.16
700700
with np.errstate(invalid='ignore'):
701701
x0 = np.min([bbox.xmin for bbox in bboxes])
702702
x1 = np.max([bbox.xmax for bbox in bboxes])

0 commit comments

Comments
 (0)
0