From fb1f9969ee13317eed95179eab22519bbf833e8f Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 16 Dec 2024 23:02:31 +0100 Subject: [PATCH 1/2] Document pipefunc. --- docs/source/changes.md | 2 ++ docs/source/explanations/comparison_to_other_tools.md | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/docs/source/changes.md b/docs/source/changes.md index 2f0362b0..38b25d82 100644 --- a/docs/source/changes.md +++ b/docs/source/changes.md @@ -13,6 +13,8 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and control. - {pull}`656` fixes the return type of the hash function for {class}`PythonNode`s. Thanks to {user}`axtimhaus` for reporting the issue. +- {pull}`657` documents `pipefunc`, another tool for executing graphs consisting out of + functions. ## 0.5.1 - 2024-07-20 diff --git a/docs/source/explanations/comparison_to_other_tools.md b/docs/source/explanations/comparison_to_other_tools.md index c021f07c..2d8131f6 100644 --- a/docs/source/explanations/comparison_to_other_tools.md +++ b/docs/source/explanations/comparison_to_other_tools.md @@ -126,3 +126,8 @@ General ## [zenml](https://github.com/zenml-io/zenml) ## [flyte](https://github.com/flyteorg/flyte) + +## [pipefunc](https://github.com/pipefunc/pipefunc) + +A tool for executing graphs made out of functions. More focused on computational +compared to workflow graphs. From b228d69684eb4da529a9b03bf378f62b2d5aed2a Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 16 Dec 2024 23:04:29 +0100 Subject: [PATCH 2/2] Fix date of 0.5.2 release. --- docs/source/changes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/changes.md b/docs/source/changes.md index 38b25d82..59957706 100644 --- a/docs/source/changes.md +++ b/docs/source/changes.md @@ -5,7 +5,7 @@ chronological order. Releases follow [semantic versioning](https://semver.org/) releases are available on [PyPI](https://pypi.org/project/pytask) and [Anaconda.org](https://anaconda.org/conda-forge/pytask). -## 0.5.2 - 2024-09-15 +## 0.5.2 - 2024-12-16 - {pull}`633` adds support for Python 3.13 and drops support for 3.8. - {pull}`640` stops the live display when an exception happened during the execution.