default_pre_build &&

# for Python 3.13.x
if spell_ok "python3" && is_depends_enabled "${SPELL}" "python3"; then
  local PY_VERSION="$(installed_version python3)" &&
  if [[ "${PY_VERSION:0:4}" == "3.13" ]]; then
     find "${SOURCE_DIRECTORY}"/ -iname *.py \
       -exec sed 's;pipes;shlex;' -i {} \;
  fi
fi
