File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,12 @@ chronological order. Releases follow [semantic versioning](https://semver.org/)
5
5
releases are available on [ PyPI] ( https://pypi.org/project/pytask-parallel ) and
6
6
[ Anaconda.org] ( https://anaconda.org/conda-forge/pytask-parallel ) .
7
7
8
- ## 0.3.1 - 2023-xx-xx
8
+ ## 0.3.1 - 2023-05-27
9
9
10
10
- {pull}` 56 ` refactors the ` ProcessPoolExecutor ` .
11
11
- {pull}` 57 ` does some housekeeping.
12
+ - {pull}` 59 ` sets the default backend to ` ProcessPoolExecutor ` even when loky is
13
+ installed.
12
14
13
15
## 0.3.0 - 2023-01-23
14
16
Original file line number Diff line number Diff line change @@ -46,8 +46,6 @@ class ParallelBackendChoices(enum.Enum):
46
46
PROCESSES = "processes"
47
47
THREADS = "threads"
48
48
49
- PARALLEL_BACKENDS_DEFAULT = ParallelBackendChoices .PROCESSES
50
-
51
49
PARALLEL_BACKENDS = {
52
50
ParallelBackendChoices .PROCESSES : CloudpickleProcessPoolExecutor ,
53
51
ParallelBackendChoices .THREADS : ThreadPoolExecutor ,
@@ -72,6 +70,4 @@ class ParallelBackendChoices(enum.Enum): # type: ignore[no-redef]
72
70
),
73
71
}
74
72
75
- PARALLEL_BACKENDS_DEFAULT = (
76
- ParallelBackendChoices .LOKY # type: ignore[attr-defined]
77
- )
73
+ PARALLEL_BACKENDS_DEFAULT = ParallelBackendChoices .PROCESSES
You can’t perform that action at this time.
0 commit comments