Skip to content

Commit a45a12f

Browse files
authored
Merge pull request #436 from GEOS-ESM/hotfix/v4-fix-f2py3bug
v4: Fix f2py3 bug
2 parents ca64ae4 + f7634b2 commit a45a12f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
### Deprecated
1919

20+
## [4.14.1] - 2025-04-03
21+
22+
### Fixed
23+
24+
- Fixed bug in f2py3 code
25+
2026
## [4.14.0] - 2025-03-24
2127

2228
### Removed

python/f2py3/UseF2Py3.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ macro (add_f2py3_module _name)
271271
set(MESON_F2PY3_FCOMPILER "${CMAKE_Fortran_COMPILER}")
272272
endif()
273273
add_custom_command(OUTPUT "${_name}${F2PY3_SUFFIX}"
274-
COMMAND ${CMAKE_COMMAND} -E env "FC=${MESON_F2PY3_FCONFILER}"
274+
COMMAND ${CMAKE_COMMAND} -E env "FC=${MESON_F2PY3_FCOMPILER}"
275275
${F2PY3_EXECUTABLE} ${F2PY_QUIET} -m ${_name}
276276
--build-dir "${CMAKE_CURRENT_BINARY_DIR}/f2py3-${_name}"
277277
${_fcompiler_opts} ${_inc_opts} ${_lib_opts} -c ${_abs_srcs} ${REDIRECT_TO_DEV_NULL}

0 commit comments

Comments
 (0)