Skip to content

Commit

Permalink
Fix meson/distutils issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 committed May 3, 2024
1 parent ed3a043 commit 38ae933
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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.45.1] - 2024-05-03

### Fixed

- Fix bug with meson/distutils for python 3

## [3.45.0] - 2024-04-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion python/f2py3/UseF2Py3.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ macro (add_f2py3_module _name)
# so we need to test the Python version and then call the correct
# f2py

if (Python3_VERSION VERSION_GREATER 3.11)
if (Python3_VERSION VERSION_GREATER_EQUAL "3.12")
set(F2PY3_BACKEND "meson")
else ()
set(F2PY3_BACKEND "distutils")
Expand Down

0 comments on commit 38ae933

Please sign in to comment.