File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed 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
13
13
nodes in v0.6.0.
14
14
- {pull}` 662 ` adds the ` .pixi ` folder to be ignored by default during the collection.
15
15
- {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 ` .
16
18
17
19
## 0.5.2 - 2024-12-19
18
20
Original file line number Diff line number Diff line change @@ -315,6 +315,10 @@ class PickleNode(PPathNode):
315
315
The path to the file.
316
316
attributes: dict[Any, Any]
317
317
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`.
318
322
319
323
"""
320
324
You can’t perform that action at this time.
0 commit comments