diff options
author | David Cournapeau <cournape@gmail.com> | 2008-09-20 16:56:08 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-09-20 16:56:08 +0000 |
commit | bb8440cc9d9c25d671020dbe5a8e64a69488133c (patch) | |
tree | cc2d98cbbb3455100c91db81038c78d87f18012b | |
parent | c372fc1bad92634ae05224263fa56c86fae9b380 (diff) | |
download | numpy-bb8440cc9d9c25d671020dbe5a8e64a69488133c.tar.gz |
More intrinsics.
-rw-r--r-- | numpy/core/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 88ed1040d..77027bc11 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -72,7 +72,7 @@ def check_math_capabilities(config, moredefs, mathlibs): # intrisincs functions are available. # Functions which have intrisinces: sin, cos, tan, sin, cosh, tanh, # fabs, sqrt, log10, log, exp, asin, acos, atan, fmod - mandatory_funcs = ["floor", "ceil", 'modf', 'frexp', 'ldexp'] + mandatory_funcs = ['modf', 'frexp', 'ldexp'] else: mandatory_funcs = ["sin", "cos", "tan", "sinh", "cosh", "tanh", "fabs", "floor", "ceil", "sqrt", "log10", "log", "exp", "asin", |