From 73dcf79183f49456dc23374b0ee1179f35ef0091 Mon Sep 17 00:00:00 2001 From: Frederick Deny Date: Wed, 28 Feb 2024 21:34:27 +0000 Subject: [PATCH] added aarch64 to check for wi4mpi supported architectures --- e4s_cl/cf/wi4mpi/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e4s_cl/cf/wi4mpi/install.py b/e4s_cl/cf/wi4mpi/install.py index 42086622..c6ca2574 100644 --- a/e4s_cl/cf/wi4mpi/install.py +++ b/e4s_cl/cf/wi4mpi/install.py @@ -160,7 +160,7 @@ def _double_tap(cmd): def install_wi4mpi(install_dir: Path) -> Optional[Path]: """Clones and installs wi4mpi from github releases""" - if os.uname().machine not in {'x86_64', 'amd64'}: + if os.uname().machine not in {'x86_64', 'amd64', 'aarch64'}: LOGGER.warning( "Wi4MPI not available for the following architecture: %s", os.uname().machine)