From 6a21b3d7fb2b3bf47304c5049e9fe43bea0eff2b Mon Sep 17 00:00:00 2001 From: Mateusz Masiarz Date: Tue, 10 Sep 2024 09:39:56 +0200 Subject: [PATCH 1/2] Dont install oicompare on macOS --- src/sinol_make/helpers/oicompare.py | 3 +++ 1 file changed, 3 insertions(+) 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() From 82e68c31c9eff02e101dd275756ef413a73b3e27 Mon Sep 17 00:00:00 2001 From: Mateusz Masiarz Date: Tue, 10 Sep 2024 09:40:14 +0200 Subject: [PATCH 2/2] Bump version --- src/sinol_make/__init__.py | 2 +- 1 file changed, 1 insertion(+), 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():