summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2022-08-22 10:25:28 +0300
committerSebastian Berg <sebastian@sipsolutions.net>2022-09-27 18:11:07 +0200
commitc6366c16844b162749dca5aab5f8541b319d99c9 (patch)
tree0203bdf67d4696dd23f005fcffa20742c06d04f4 /numpy/core/setup_common.py
parent9c5a2b41cc0ade160a01b7423630f7ee1b8e63dc (diff)
downloadnumpy-c6366c16844b162749dca5aab5f8541b319d99c9.tar.gz
BUILD: move some never-blocked complex math functions to 'mandatory'
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r--numpy/core/setup_common.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py
index 0100906d0..0c727a913 100644
--- a/numpy/core/setup_common.py
+++ b/numpy/core/setup_common.py
@@ -128,6 +128,8 @@ MANDATORY_FUNCS = [
"rint", "trunc", "exp2",
"copysign", "nextafter", "strtoll", "strtoull", "cbrt",
"log2", "pow", "hypot", "atan2",
+ "csin", "csinh", "ccos", "ccosh", "ctan", "ctanh",
+ "creal", "cimag", "conj"
]
OPTIONAL_LOCALE_FUNCS = ["strtold_l"]
@@ -147,8 +149,7 @@ C99_COMPLEX_TYPES = [
]
C99_COMPLEX_FUNCS = [
"cabs", "cacos", "cacosh", "carg", "casin", "casinh", "catan",
- "catanh", "ccos", "ccosh", "cexp", "cimag", "clog", "conj", "cpow",
- "cproj", "creal", "csin", "csinh", "csqrt", "ctan", "ctanh"
+ "catanh", "cexp", "clog", "cpow", "csqrt",
]
OPTIONAL_HEADERS = [