8000 Fix np.set_printoptions argument change in numpy 1.14.dev (#10132) · scikit-learn/scikit-learn@3f96eee · GitHub
[go: up one dir, main page]

Skip to content

Commit 3f96eee

Browse files
authored
Fix np.set_printoptions argument change in numpy 8000 1.14.dev (#10132)
https://github.com/numpy/numpy/pull/9332/files change sign='legacy' to legacy=True in the np.set_printoptions arguments.
1 parent 62eda82 commit 3f96eee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
# the doctests pass
1010
import numpy as np
1111
try:
12-
np.set_printoptions(sign='legacy')
12+
np.set_printoptions(legacy=True)
1313
except TypeError:
1414
pass

0 commit comments

Comments
 (0)
0