summaryrefslogtreecommitdiff
path: root/numpy/random/setup.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-04-12 10:27:33 +0300
committermattip <matti.picus@gmail.com>2019-05-20 18:45:27 +0300
commit9578dcfbe744854312690ea79063e50d67fc88a2 (patch)
treec81fd1e43aa3a2a5124aae8575dcb427746b8ef9 /numpy/random/setup.py
parentc53b2eb729bae1f248a2654dfcfa4a3dd3e2902b (diff)
downloadnumpy-9578dcfbe744854312690ea79063e50d67fc88a2.tar.gz
BUG: __dealloc__ can be called without __init__ in some error modes
skip doctests that require scipy move original mtrand module to _mtrand adjust documentation for namespace change
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r--numpy/random/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py
index 088764791..38d968feb 100644
--- a/numpy/random/setup.py
+++ b/numpy/random/setup.py
@@ -48,7 +48,7 @@ def configuration(parent_package='',top_path=None):
# Configure mtrand
config.add_extension('_mtrand',
sources=[join('_mtrand', x) for x in
- ['mtrand.c', 'randomkit.c', 'initarray.c',
+ ['_mtrand.c', 'randomkit.c', 'initarray.c',
'distributions.c']]+[generate_libraries],
libraries=libs,
depends=[join('_mtrand', '*.h'),