diff options
author | mattip <matti.picus@gmail.com> | 2019-04-12 10:27:33 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-05-20 18:45:27 +0300 |
commit | 9578dcfbe744854312690ea79063e50d67fc88a2 (patch) | |
tree | c81fd1e43aa3a2a5124aae8575dcb427746b8ef9 /numpy/random/setup.py | |
parent | c53b2eb729bae1f248a2654dfcfa4a3dd3e2902b (diff) | |
download | numpy-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.py | 2 |
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'), |