From 0ba9357e2c475dabb326ffe1ca7f514620147bcf Mon Sep 17 00:00:00 2001 From: Sergey Lyubimtsev Date: Sat, 5 Mar 2022 16:29:33 +0300 Subject: [PATCH] refactoring --- src/bindings/python/wheel/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/wheel/setup.py b/src/bindings/python/wheel/setup.py index d671a95cf85..a21c273f4b8 100644 --- a/src/bindings/python/wheel/setup.py +++ b/src/bindings/python/wheel/setup.py @@ -27,7 +27,7 @@ WHEEL_LIBS_PACKAGE = 'openvino.libs' PYTHON_VERSION = f'python{sys.version_info.major}.{sys.version_info.minor}' LIBS_DIR = 'bin' if platform.system() == 'Windows' else 'lib' -CONFIG = 'Release' if platform.system() == 'Windows' else '' +CONFIG = 'Release' if platform.system() in {'Windows' , 'Darwin'} else '' machine = platform.machine() if machine == 'x86_64' or machine == 'AMD64':