Releases: scalableminds/webknossos-libs
Releases · scalableminds/webknossos-libs
v0.14.10
v0.14.9
v0.14.8
v0.14.7
Release for v0.14.7
v0.14.6
cluster_tools
Added
- Added SIGINT handling to
DaskExecutor
. #959 - Added support for resources (e.g. mem, cpus) to
DaskExecutor
. #959 - The cluster address for the
DaskExecutor
can be configured via theDASK_ADDRESS
env var. #959
Changed
- Tasks using the
DaskExecutor
are run in their own process. This is required to not block the GIL for the dask worker to communicate with the scheduler. Env variables are propagated to the task processes. #959
v0.14.5
v0.14.3
v0.14.2
Release for v0.14.2
v0.14.1
v0.14.0
webknossos
Breaking Changes
wait_and_ensure_success
fromwebknossos.utils
now requires anexecutor
argument. #943
Changed
- Updates various dependencies. #943
cluster_tools
Breaking Changes
- Dropped support for Python 3.7. #943
- Please use
Executor.as_completed
instead ofconcurrent.futures.as_completed
because the latter will not work forDaskExecutor
futures. #943
Added
- Added
DaskScheduler
(only Python >= 3.9). #943
Changed
- The exported
Executor
type is now implemented as a protocol. #943