File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,12 @@ chronological order. Releases follow [semantic versioning](https://semver.org/)
5
5
releases are available on [ PyPI] ( https://pypi.org/project/pytask-r ) and
6
6
[ Anaconda.org] ( https://anaconda.org/conda-forge/pytask-r ) .
7
7
8
- ## x.x.x - 2024-xx-xx
8
+ ## 0.4.2 - 2024-xx-xx
9
9
10
10
- {pull}` 50 ` uses pixi to install R and uses uuid4 to generate more robust file names
11
11
for serialized arguments.
12
12
- {pull}` 51 ` reenables testing with different Python versions.
13
+ - {pull}` 54 ` updates tests for pytask v0.5.
13
14
14
15
## 0.4.1 - 2024-04-20
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_example(
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