8000 BUG: missing comma disabled some header checks · numpy/numpy@270927f · GitHub
[go: up one dir, main page]

Skip to content

Commit 270927f

Browse files
committed
BUG: missing comma disabled some header checks
closes gh-8693
1 parent eb271d9 commit 270927f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

numpy/core/setup_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def check_api_version(apiversion, codegen_dir):
116116
"xmmintrin.h", # SSE
117117
"emmintrin.h", # SSE2
118118
"features.h", # for glibc version linux
119-
"xlocale.h" # see GH#8367
119+
"xlocale.h", # see GH#8367
120120
"dlfcn.h", # dladdr
121121
]
122122

numpy/core/src/multiarray/temp_elide.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
#define NPY_NO_DEPRECATED_API NPY_API_VERSION
55
#define _MULTIARRAYMODULE
6+
#include "npy_config.h"
67
#include "numpy/arrayobject.h"
78

89
#define NPY_NUMBER_MAX(a, b) ((a) > (b) ? (a) : (b))

0 commit comments

Comments
 (0)
0