From 7ee9269c32bfcde2e872256aa954f1a36ffdb8f2 Mon Sep 17 00:00:00 2001 From: Sylvain Tricot Date: Wed, 26 Feb 2025 11:12:54 +0100 Subject: [PATCH] Change the F2PY command F2PY was 'f2py3', but it is now 'f2py' to ensure using the Fortran to Python builder of the current virtualenv. --- src/options.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.mk b/src/options.mk index 5e08919..6c30220 100644 --- a/src/options.mk +++ b/src/options.mk @@ -3,7 +3,7 @@ PYMAJ = 3 PYMIN = 5 FC = gfortran -F2PY = f2py3 --f77exec=$(FC) --f90exec=$(FC) +F2PY = f2py --f77exec=$(FC) --f90exec=$(FC) NO_VENV = 0 DEBUG = 0