Skip to content

Commit e862e98

Browse files
committed
fix(pipeline,pyproject): experimentellen Ausführungsmodus für den synchronen Executor aktivieren und Version auf 0.31.5.1 erhöhen
1 parent 2348e79 commit e862e98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-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 for building and managing data proces
44
authors = [{ name = "Volker L.", email = "[email protected]" }]
55
readme = "README.md"
66
requires-python = ">= 3.11"
7-
version = "0.31.5"
7+
version = "0.31.5.1"
88
keywords = ["hamilton", "workflow", "pipeline", "scheduler", "dask", "ray"]
99

1010
dependencies = [

src/flowerpower/pipeline/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def _execute_pipeline(
304304
allow_experimental_mode = True
305305
synchronous_executor = False
306306
else:
307-
allow_experimental_mode = False
307+
allow_experimental_mode = True
308308
try:
309309
# Create Hamilton driver
310310
dr = (

0 commit comments

Comments
 (0)