diff options
author | mattip <matti.picus@gmail.com> | 2019-09-15 10:20:38 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-09-20 09:34:47 +0300 |
commit | 9852340606cf5f0e23cca8107e2bce61f022bc4e (patch) | |
tree | 54b2a6311c1659ebc60b69147186f0fbf657d10c /numpy/core/setup.py | |
parent | 3096f1ab91b97214c5b0b91d0bd21b56206fc372 (diff) | |
download | numpy-9852340606cf5f0e23cca8107e2bce61f022bc4e.tar.gz |
BUILD: add --debug-configure option to reduce output, use logger more
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 63b515b18..1f52efc17 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -639,23 +639,6 @@ def configuration(parent_package='',top_path=None): ] ####################################################################### - # dummy module # - ####################################################################### - - # npymath needs the config.h and numpyconfig.h files to be generated, but - # build_clib cannot handle generate_config_h and generate_numpyconfig_h - # (don't ask). Because clib are generated before extensions, we have to - # explicitly add an extension which has generate_config_h and - # generate_numpyconfig_h as sources *before* adding npymath. - - config.add_extension('_dummy', - sources=[join('src', 'dummymodule.c'), - generate_config_h, - generate_numpyconfig_h, - generate_numpy_api] - ) - - ####################################################################### # npymath library # ####################################################################### |