Skip to content

Commit 4cdb721

Browse files
committed
Fix.
1 parent 17accc9 commit 4cdb721

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

docs/source/changes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
1313
nodes in v0.6.0.
1414
- {pull}`662` adds the `.pixi` folder to be ignored by default during the collection.
1515
- {pull}`671` enhances the documentation on complex repetitions. Closes {issue}`670`.
16+
- {pull}`673` adds de-/serializer function attributes to the `PickleNode`. Closes
17+
{issue}`669`.
1618

1719
## 0.5.2 - 2024-12-19
1820

src/_pytask/nodes.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,10 @@ class PickleNode(PPathNode):
315315
The path to the file.
316316
attributes: dict[Any, Any]
317317
A dictionary to store additional information of the task.
318+
serializer
319+
A function to serialize the object. Defaults to :func:`pickle.dump`.
320+
deserializer
321+
A function to deserialize the object. Defaults to :func:`pickle.load`.
318322
319323
"""
320324

0 commit comments

Comments
 (0)