File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ $ pip install pytask-parallel
28
28
$ conda install -c conda-forge pytask-parallel
29
29
```
30
30
31
- By default, the plugin uses ` loky ` 's robust implementation of the ` ProcessPoolExecutor ` .
31
+ By default, the plugin uses ` concurrent.futures. ProcessPoolExecutor` .
32
32
33
- It is also possible to select the ` ProcessPoolExecutor ` or ` ThreadPoolExecutor ` from the
33
+ It is also possible to select the executor from loky or ` ThreadPoolExecutor ` from the
34
34
[ concurrent.futures] ( https://docs.python.org/3/library/concurrent.futures.html ) module
35
35
as backends to execute tasks asynchronously.
36
36
@@ -65,7 +65,7 @@ You can also set the options in a `pyproject.toml`.
65
65
66
66
[tool .pytask .ini_options ]
67
67
n_workers = 1
68
- parallel_backend = " loky " # or processes or threads
68
+ parallel_backend = " processes " # or loky or threads
69
69
```
70
70
71
71
## Some implementation details
You can’t perform that action at this time.
0 commit comments