From 1e5a62c85da638904e0b107d2f9988bd0680b130 Mon Sep 17 00:00:00 2001 From: Mateusz Masiarz Date: Tue, 10 Sep 2024 10:22:57 +0200 Subject: [PATCH] Don't install oicompare on macOS (#262) * Dont install oicompare on macOS * Bump version --- src/sinol_make/__init__.py | 2 +- src/sinol_make/helpers/oicompare.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/sinol_make/__init__.py b/src/sinol_make/__init__.py index a7b99549..a02138a2 100644 --- a/src/sinol_make/__init__.py +++ b/src/sinol_make/__init__.py @@ -12,7 +12,7 @@ from sinol_make.task_type.interactive import InteractiveTaskType # noqa -__version__ = "1.8.3" +__version__ = "1.8.4" def configure_parsers(): diff --git a/src/sinol_make/helpers/oicompare.py b/src/sinol_make/helpers/oicompare.py index e72f8f88..aaea3d72 100644 --- a/src/sinol_make/helpers/oicompare.py +++ b/src/sinol_make/helpers/oicompare.py @@ -49,6 +49,9 @@ def download_oicomapare(): def check_and_download(): + # macOS doesn't allow compiling statically and I don't want to deal with it + if util.is_macos(): + return if check_installed(): return download_oicomapare()