File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ requires = [
4
4
" wheel" ,
5
5
" Cython" ,
6
6
" numpy==1.12.1; python_version<'3.5'" ,
7
- " oldest-supported-numpy; python_version>='3.5'" ,
7
+ " oldest-supported-numpy; python_version>='3.5' and python_version<'3.9'" ,
8
+ " numpy==2.0.2; python_version>='3.9'" ,
8
9
]
9
10
10
11
build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ def run(self):
34
34
if sys .platform != "darwin" :
35
35
args = "-fopenmp -fopenmp" .split ()
36
36
37
+ print ("Numpy version" , np .__version__ )
38
+ print ("Numpy include path" , np .get_include ())
39
+
37
40
# NOTE: We need c++11 because manylinux2014 has gcc 4.8, which preceedes c++14
38
41
module = Extension ('_gridpp' ,
39
42
sources = glob .glob ('src/api/*.cpp' ) + glob .glob ('src/api/*.c' ) + ['gridppPYTHON_wrap.cxx' ],
You can’t perform that action at this time.
0 commit comments