We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1318e87 commit 1e5a62cCopy full SHA for 1e5a62c
src/sinol_make/__init__.py
@@ -12,7 +12,7 @@
12
from sinol_make.task_type.interactive import InteractiveTaskType # noqa
13
14
15
-__version__ = "1.8.3"
+__version__ = "1.8.4"
16
17
18
def configure_parsers():
src/sinol_make/helpers/oicompare.py
@@ -49,6 +49,9 @@ def download_oicomapare():
49
50
51
def check_and_download():
52
+ # macOS doesn't allow compiling statically and I don't want to deal with it
53
+ if util.is_macos():
54
+ return
55
if check_installed():
56
return
57
download_oicomapare()
0 commit comments