File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments