Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [3.58.1] - 2025-04-03

### Fixed

- Fixed bug in f2py3 code

## [3.58.0] - 2025-03-24

### Removed
Expand Down
2 changes: 1 addition & 1 deletion python/f2py3/UseF2Py3.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ macro (add_f2py3_module _name)
set(MESON_F2PY3_FCOMPILER "${CMAKE_Fortran_COMPILER}")
endif()
add_custom_command(OUTPUT "${_name}${F2PY3_SUFFIX}"
COMMAND ${CMAKE_COMMAND} -E env "FC=${MESON_F2PY3_FCONFILER}"
COMMAND ${CMAKE_COMMAND} -E env "FC=${MESON_F2PY3_FCOMPILER}"
${F2PY3_EXECUTABLE} ${F2PY_QUIET} -m ${_name}
--build-dir "${CMAKE_CURRENT_BINARY_DIR}/f2py3-${_name}"
${_fcompiler_opts} ${_inc_opts} ${_lib_opts} -c ${_abs_srcs} ${REDIRECT_TO_DEV_NULL}
Expand Down