Skip to content

Commit 1d51ac3

Browse files
committed
Update readme.
1 parent 82b7cb6 commit 1d51ac3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ $ pip install pytask-parallel
2828
$ conda install -c conda-forge pytask-parallel
2929
```
3030

31-
By default, the plugin uses `loky`'s robust implementation of the `ProcessPoolExecutor`.
31+
By default, the plugin uses `concurrent.futures.ProcessPoolExecutor`.
3232

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
3434
[concurrent.futures](https://docs.python.org/3/library/concurrent.futures.html) module
3535
as backends to execute tasks asynchronously.
3636

@@ -65,7 +65,7 @@ You can also set the options in a `pyproject.toml`.
6565

6666
[tool.pytask.ini_options]
6767
n_workers = 1
68-
parallel_backend = "loky" # or processes or threads
68+
parallel_backend = "processes" # or loky or threads
6969
```
7070

7171
## Some implementation details

0 commit comments

Comments
 (0)