Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e62832f

Browse files
committed
Fix Numpy version check
1 parent cd0e7e0 commit e62832f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_agg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def process_image(self, padded_src, dpi):
251251
t2 = self.offset_filter.process_image(t1, dpi)
252252
return t2
253253

254-
if V(np.__version__) <= V('1.7.0'):
254+
if V(np.__version__) < V('1.7.0'):
255255
return
256256

257257
fig = plt.figure()

0 commit comments

Comments
 (0)