diff options
author | mattip <matti.picus@gmail.com> | 2019-05-23 07:54:47 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-05-23 08:22:10 +0300 |
commit | 4e6a812732b4c09b20354a47d488fbe384124827 (patch) | |
tree | 7c5fe9e28841746459486747199c5b3c90c53707 /numpy/random/setup.py | |
parent | 060c6695ba0fc7f19529edfb04b5c1ee3092f099 (diff) | |
download | numpy-4e6a812732b4c09b20354a47d488fbe384124827.tar.gz |
MAINT: remove pre-randomgen _mtrand
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r-- | numpy/random/setup.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py index 31feddb29..48a729179 100644 --- a/numpy/random/setup.py +++ b/numpy/random/setup.py @@ -45,19 +45,6 @@ def configuration(parent_package='',top_path=None): libs = [] defs.append(('NPY_NO_DEPRECATED_API', 0)) - # Configure mtrand - config.add_extension('_mtrand', - sources=[join('_mtrand', x) for x in - ['_mtrand.c', 'randomkit.c', 'initarray.c', - 'distributions.c']]+[generate_libraries], - libraries=libs, - depends=[join('_mtrand', '*.h'), - join('_mtrand', '*.pyx'), - join('_mtrand', '*.pxi'),], - define_macros=defs, - ) - - config.add_data_files(('.', join('_mtrand', 'randomkit.h'))) config.add_data_dir('tests') ############################## |