Skip to content

Commit 40b7dbf

Browse files
committed
Bump version to 0.9.12.2; enable dynamic execution in PipelineManager and update remote executor handling
1 parent 81b2c2c commit 40b7dbf

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A simple workflow framework. Hamilton + APScheduler = FlowerPower
44
authors = [{ name = "Volker L.", email = "[email protected]" }]
55
readme = "README.md"
66
requires-python = ">= 3.11"
7-
version = "0.9.12.1"
7+
version = "0.9.12.2"
88
keywords = ["hamilton", "workflow", "pipeline", "scheduler", "apscheduler", "dask", "ray"]
99
dependencies = [
1010
'aiobotocore<2.18.0',

src/flowerpower/pipeline.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,10 @@ def _get_driver(
261261
)
262262

263263
if executor_ is not None:
264-
dr = dr.with_remote_executor(executor_)
264+
265+
dr = dr.enable_dynamic_execution(
266+
allow_experimental_mode=True
267+
).with_remote_executor(executor_)
265268

266269
if len(adapters):
267270
dr = dr.with_adapters(*adapters)

0 commit comments

Comments
 (0)