From e34d4e4664d1292fd6af8e69cbb78232ea96644b Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Wed, 22 Feb 2023 12:55:27 +0400 Subject: [PATCH] Install patchelf for aarch64 linux (#15865) --- src/bindings/python/wheel/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/wheel/requirements-dev.txt b/src/bindings/python/wheel/requirements-dev.txt index 780102df154..38b09d5d1ef 100644 --- a/src/bindings/python/wheel/requirements-dev.txt +++ b/src/bindings/python/wheel/requirements-dev.txt @@ -1,3 +1,3 @@ setuptools>=53.0.0 wheel>=0.38.1 -patchelf; sys_platform == 'linux' and platform_machine == 'x86_64' +patchelf; sys_platform == 'linux' and platform_machine == 'x86_64' or sys_platform == 'linux' and platform_machine == 'aarch64'