From 68358f223de596d779398c951ae4ed7dda8e9d4b Mon Sep 17 00:00:00 2001 From: rosbeef andino Date: Wed, 11 Oct 2023 18:31:46 +0000 Subject: [PATCH] Update _common.sh --- scripts/_common.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/_common.sh b/scripts/_common.sh index 7d7a910..9ce1f45 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -129,6 +129,13 @@ myynh_install_homeassistant () { # install last version of pip ynh_exec_warn_less ynh_exec_as $app "$install_dir/bin/pip3" --cache-dir "$data_dir/.cache" install --upgrade "$pip_required" + # install last version of PyNacl + ynh_exec_warn_less ynh_exec_as $app "$install_dir/bin/pip3" --cache-dir "$data_dir/.cache" install --upgrade PyNacl + # install last version of numpy (https://github.com/numpy/numpy/issues/24703) + ynh_exec_warn_less ynh_exec_as $app "$install_dir/bin/pip3" --cache-dir "$data_dir/.cache" install --upgrade numpy --config-settings=setup-args="-Dallow-noblas=true" + # install last version of PyNacl (need cmake installed) + ynh_exec_warn_less ynh_exec_as $app "$install_dir/bin/pip3" --cache-dir "$data_dir/.cache" install --upgrade PyTurbpJPEG + # install last version of wheel ynh_exec_warn_less ynh_exec_as $app "$install_dir/bin/pip3" --cache-dir "$data_dir/.cache" install --upgrade wheel