Skip to content
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