We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eab04b commit f507e1bCopy full SHA for f507e1b
src/sinol_make/__init__.py
@@ -9,7 +9,7 @@
9
from sinol_make import util, oiejq
10
11
12
-__version__ = "1.5.17"
+__version__ = "1.5.18"
13
14
15
def configure_parsers():
src/sinol_make/util.py
@@ -287,6 +287,8 @@ def change_stack_size_to_unlimited():
287
"""
288
Function to change the stack size to unlimited.
289
290
+ if is_macos():
291
+ return
292
try:
293
resource.setrlimit(resource.RLIMIT_STACK, (resource.RLIM_INFINITY, resource.RLIM_INFINITY))
294
except (resource.error, ValueError):
0 commit comments