File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 23
23
- id : python-no-log-warn
24
24
- id : python-use-type-annotations
25
25
- id : text-unicode-replacement-char
26
- - repo : https://github.com/asottile/reorder_python_imports
26
+ - repo : https://github.com/asottile/reorder-python-imports
27
27
rev : v3.9.0
28
28
hooks :
29
29
- id : reorder-python-imports
@@ -37,11 +37,11 @@ repos:
37
37
hooks :
38
38
- id : black
39
39
- repo : https://github.com/charliermarsh/ruff-pre-commit
40
- rev : v0.0.261
40
+ rev : v0.0.269
41
41
hooks :
42
42
- id : ruff
43
43
- repo : https://github.com/dosisod/refurb
44
- rev : v1.15 .0
44
+ rev : v1.16 .0
45
45
hooks :
46
46
- id : refurb
47
47
args : [--ignore, FURB126]
64
64
hooks :
65
65
- id : codespell
66
66
- repo : https://github.com/pre-commit/mirrors-mypy
67
- rev : ' v1.2 .0'
67
+ rev : ' v1.3 .0'
68
68
hooks :
69
69
- id : mypy
70
70
args : [
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