From 22cd3c6b53926b7bdb382d0ff6af4729e36b15c4 Mon Sep 17 00:00:00 2001 From: Sergio Date: Tue, 8 Oct 2024 17:12:57 +0200 Subject: [PATCH] Remove readline installation from xjalienfs recipe Since https://github.com/alisw/alidist/pull/5534 we depend on gnureadline globally anyway, no point in reinstalling it in the recipe --- xjalienfs.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/xjalienfs.sh b/xjalienfs.sh index fe720da2ce..bcc468e1d9 100644 --- a/xjalienfs.sh +++ b/xjalienfs.sh @@ -19,13 +19,6 @@ prepend_path: # works inside and outside a virtualenv, but unset VIRTUAL_ENV to make sure we # only depend on stuff we installed using our Python and Python-modules. -# on macos try to install gnureadline and just skip if fails (alienpy can work without it) -# macos python readline implementation is build on libedit which does not work -[[ "$ARCHITECTURE" == osx_* ]] && { env -u VIRTUAL_ENV ALIBUILD=1 \ - python3 -m pip install --force-reinstall \ - --target="$INSTALLROOT/lib/python/site-packages" \ - gnureadline || : ; } - env -u VIRTUAL_ENV ALIBUILD=1 \ python3 -m pip install --force-reinstall \ --target="$INSTALLROOT/lib/python/site-packages" \