8000 < not <= · matplotlib/matplotlib@92649fd · GitHub
[go: up one dir, main page]

Skip to content

Commit 92649fd

Browse files
committed
< not <=
1 parent 0313a8d commit 92649fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/category.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
def shim_array(data):
20-
if LooseVersion(np.__version__) <= LooseVersion('1.8.0'):
20+
if LooseVersion(np.__version__) < LooseVersion('1.8.0'):
2121
if (isinstance(data, six.string_types) or
2222
not isinstance(data, collections.Iterable)):
2323
data = [data]

0 commit comments

Comments
 (0)
0