--- meson.build.orig 2025-06-11 05:23:04 +++ meson.build 2026-02-13 22:01:10 @@ -7,7 +7,7 @@ ) # Use the Python installation that Meson uses. Its version is >= 3.7. -python3 = import('python').find_installation() +python3 = find_program('@@PYTHON3_BIN@@', version: '>= 3.7') # Source and build root directories of the current (sub)project. project_source_root = meson.project_source_root() --- skeletonmm/meson.build.orig 2025-06-11 05:23:04 +++ skeletonmm/meson.build 2026-02-13 22:01:31 @@ -42,7 +42,7 @@ project_build_root = meson.project_build_root() # Use the Python installation that Meson uses. Its version is >= 3.7. -python3 = import('python').find_installation() +python3 = find_program('@@PYTHON3_BIN@@', version: '>= 3.7') # Do we build from a git repository? # Suppose we do if and only if the meson.build file is tracked by git.