Skip to content

Releases: pytask-dev/pytask-r

v0.4.1

20 Apr 08:30
534b8be
Compare
Choose a tag to compare

What's Changed

This release contains some bug fixes and cleanup.

Full Changelog: v0.4.0...v0.4.1

v0.4.0

07 Oct 23:15
143aa77
Compare
Choose a tag to compare

What's Changed

This release makes pytask-r compatible with pytask v0.4.0.

v0.3.0

23 Jan 22:42
c36bbef
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.0...v0.3.0

v0.2.0

16 Apr 15:46
78bfa18
Compare
Choose a tag to compare

Highlights

This release adds a new interface to pytask-r which is explained in the readme.

The path to the script is now part of the decorator.

import pytask


@pytask.mark.r(script="script.r")
@pytask.mark.produces("out.rds")
def task_run_r_script():
    pass

Passing dependencies, products or other information to the R script is a problem of the past. Now, all the information can serialized to a .json or .yaml file. The path to this file is passed to the R script. Inside the script, you can read the serialized information which gives you a dictionary like this:

{
    "depends_on": ...,
    "produces": ...,
    ...
}

What's Changed

Full Changelog: v0.1.1...v0.2.0

v0.1.1

07 Feb 23:28
238e002
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.0...v0.1.1

v0.1.0

22 Jul 06:59
1ae9854
Compare
Choose a tag to compare
Align pytask-r with pytask v0.1.0. (#18)

v0.0.9

05 Mar 07:22
8b48e41
Compare
Choose a tag to compare
Fix version number in package. (#13)

v0.0.8

03 Mar 23:25
5651b79
Compare
Choose a tag to compare
Add dependencies to setup.py. (#12)

v0.0.7

25 Feb 22:22
1f2086e
Compare
Choose a tag to compare
Prepare pytask-r to be published on PyPI. (#9)

v0.0.6

16 Jan 15:26
cf36696
Compare
Choose a tag to compare
Convert cmd arguments to strings, remove --vanilla, display executed …

…command and release v0.0.6. (#7)