diff options
author | Sebastien Gouezel <sebastien.gouezel@univ-rennes1.fr> | 2015-02-08 22:50:23 +0100 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-02-08 18:23:28 -0700 |
commit | adc6b13029bf885e9b7dee9a4cafc19a2dc3eb4f (patch) | |
tree | e026b7635e12858fbe9350744fa4768444faca0c /numpy/core/setup.py | |
parent | ad3f89fc8a0f0b77fd0a6360cdc903601e2fab10 (diff) | |
download | numpy-adc6b13029bf885e9b7dee9a4cafc19a2dc3eb4f.tar.gz |
BLD: Use system-wide fenv.h on cygwin
Closes #5532.
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 75d64d81b..7f0649158 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -630,15 +630,9 @@ def configuration(parent_package='',top_path=None): deps = [join('src', 'npymath', '_signbit.c'), join('include', 'numpy', '*object.h'), - 'include/numpy/fenv/fenv.c', - 'include/numpy/fenv/fenv.h', join(codegen_dir, 'genapi.py'), ] - # Don't install fenv unless we need them. - if sys.platform == 'cygwin': - config.add_data_dir('include/numpy/fenv') - ####################################################################### # dummy module # ####################################################################### |