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 71d6d8f commit f0f8573Copy full SHA for f0f8573
executor/engine/__init__.py
@@ -1,7 +1,7 @@
1
from .core import Engine, EngineSetting
2
from .job import LocalJob, ThreadJob, ProcessJob
3
4
-__version__ = '0.3.0'
+__version__ = '0.3.1'
5
6
__all__ = [
7
'Engine', 'EngineSetting',
executor/engine/job/process.py
@@ -2,6 +2,9 @@
import functools
from inspect import iscoroutinefunction
+import loky.process_executor
+if hasattr(loky.process_executor, "_MAX_MEMORY_LEAK_SIZE"):
+ loky.process_executor._MAX_MEMORY_LEAK_SIZE = int(1e13)
8
from loky.process_executor import ProcessPoolExecutor
9
10
from .base import Job
0 commit comments