From f4b7b79caab40f16ee9d20d940c8591252088895 Mon Sep 17 00:00:00 2001 From: Emiliano Deustua Date: Sun, 27 Oct 2024 13:32:11 -0500 Subject: [PATCH] fix: Sync numpy version in meson build --- meson.build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index a2ca80e1..6a41712c 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,7 @@ project( 'ccpy', - 'c', 'fortran', + 'c', + 'fortran', version: '0.0.3', license: 'GPL-3', meson_version: '>= 1.1.0', @@ -17,7 +18,7 @@ py3_dep = py3.dependency() f2py_script = find_program('devtools/f2py_script.sh') -min_numpy_version = '1.23.5' # keep in sync with pyproject.toml +min_numpy_version = '2.0.0' # keep in sync with pyproject.toml add_languages('fortran', native: false) ff = meson.get_compiler('fortran')