File tree 2 files changed +5
-3
lines changed 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask-julia) and
10
10
- {pull}` 31 ` uses pixi to provision Julia if possible.
11
11
- {pull}` 32 ` uses trusted publishing for PyPI.
12
12
- {pull}` 33 ` uses uuid4 to generate more robust file names for serialized arguments.
13
+ - {pull}` 36 ` updates tests for pytask v0.5.
13
14
14
15
## 0.4.0 - 2023-10-08
15
16
Original file line number Diff line number Diff line change @@ -22,9 +22,10 @@ def test_execution_w_varying_dependencies_products(
22
22
import pytask
23
23
from pathlib import Path
24
24
25
- @pytask.mark.depends_on({ dependencies } )
26
- @pytask.mark.produces({ products } )
27
- def task_dummy(depends_on, produces):
25
+ def task_dummy(
26
+ depends_on=[Path(p) for p in { dependencies } ],
27
+ produces=[Path(p) for p in { products } ],
28
+ ):
28
29
if isinstance(produces, dict):
29
30
produces = produces.values()
30
31
elif isinstance(produces, Path):
You can’t perform that action at this time.
0 commit comments