Skip to content

Releases: pytask-dev/pytask-r

v0.4.1

Choose a tag to compare

@github-actions github-actions released this 20 Apr 08:30
534b8be

What's Changed

This release contains some bug fixes and cleanup.

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

v0.4.0

Choose a tag to compare

@tobiasraabe tobiasraabe released this 07 Oct 23:15
143aa77

What's Changed

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

v0.3.0

Choose a tag to compare

@tobiasraabe tobiasraabe released this 23 Jan 22:42
c36bbef

What's Changed

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

v0.2.0

Choose a tag to compare

@tobiasraabe tobiasraabe released this 16 Apr 15:46
78bfa18

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

Choose a tag to compare

@tobiasraabe tobiasraabe released this 07 Feb 23:28
238e002

What's Changed

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

v0.1.0

Choose a tag to compare

@tobiasraabe tobiasraabe released this 22 Jul 06:59
1ae9854
Align pytask-r with pytask v0.1.0. (#18)

v0.0.9

Choose a tag to compare

@tobiasraabe tobiasraabe released this 05 Mar 07:22
8b48e41
Fix version number in package. (#13)

v0.0.8

Choose a tag to compare

@tobiasraabe tobiasraabe released this 03 Mar 23:25
5651b79
Add dependencies to setup.py. (#12)

v0.0.7

Choose a tag to compare

@tobiasraabe tobiasraabe released this 25 Feb 22:22
1f2086e
Prepare pytask-r to be published on PyPI. (#9)

v0.0.6

Choose a tag to compare

@tobiasraabe tobiasraabe released this 16 Jan 15:26
cf36696
Convert cmd arguments to strings, remove --vanilla, display executed …