Skip to content

Document pipefunc. #656

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/source/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ 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.
- {pull}`646` adds a `.gitignore` to the `.pytask/` folder to exclude it from version
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

Expand Down
5 changes: 5 additions & 0 deletions docs/source/explanations/comparison_to_other_tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading