diff options
author | Warren Weckesser <warren.weckesser@gmail.com> | 2020-05-04 19:04:20 -0400 |
---|---|---|
committer | Warren Weckesser <warren.weckesser@gmail.com> | 2020-05-04 19:07:27 -0400 |
commit | e95fcba32f123dc3ea6e23f533fedf5aee64815e (patch) | |
tree | c2e7750ebb1950373fb14a41ed36eeacf41bbd21 /numpy/random/mtrand.pyx | |
parent | 30bf46c0538266ade0ac0e1a18486a226196b738 (diff) | |
download | numpy-e95fcba32f123dc3ea6e23f533fedf5aee64815e.tar.gz |
DEP: Deprecate `numpy.dual`.
Add a deprecation warning in the `numpy.dual` module, and
remove the use of `numpy.dual` from the few places where it
is used in the numpy code.
Diffstat (limited to 'numpy/random/mtrand.pyx')
-rw-r--r-- | numpy/random/mtrand.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/mtrand.pyx b/numpy/random/mtrand.pyx index 0c0c611af..6f2ba871c 100644 --- a/numpy/random/mtrand.pyx +++ b/numpy/random/mtrand.pyx @@ -4049,7 +4049,7 @@ cdef class RandomState: [True, True] # random """ - from numpy.dual import svd + from numpy.linalg import svd # Check preconditions on arguments mean = np.array(mean) |