From 4c8415037902e7a7fe8375cbd92b374c064c5dc3 Mon Sep 17 00:00:00 2001 From: Ryuichi Yamamoto Date: Sat, 29 Jun 2024 12:21:34 +0900 Subject: [PATCH] run c numpy import just in case ref https://cython.readthedocs.io/en/stable/src/tutorial/numpy.html --- pysptk/_sptk.pyx | 1 + 1 file changed, 1 insertion(+) diff --git a/pysptk/_sptk.pyx b/pysptk/_sptk.pyx index a91ad11..87c92bb 100644 --- a/pysptk/_sptk.pyx +++ b/pysptk/_sptk.pyx @@ -2,6 +2,7 @@ import numpy as np cimport numpy as np +np.import_array() cimport cython from . cimport _sptk