disable deprecated APIs in NumPy (from before version 1.7) to silence warning

This commit is contained in:
2025-07-08 15:48:53 +02:00
parent 157b7bad8c
commit 7d5a0f7ad8

View File

@ -11,6 +11,7 @@ peakfinder8_ext = Extension(
include_dirs = [peakfinder8_include_dir, numpy.get_include()],
library_dirs = [peakfinder8_library_dir],
libraries = ["peakfinder8"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
language = "c++"
)