-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpixi.toml
More file actions
36 lines (29 loc) · 819 Bytes
/
Copy pathpixi.toml
File metadata and controls
36 lines (29 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[workspace]
authors = ["Daniel McCloy <dan@mccloy.info>"]
channels = ["conda-forge"]
name = "phoible"
platforms = ["linux-64"]
version = "0.1.0"
[tasks]
test = [{ task = "tests"}]
[dependencies]
r = "4.*"
[feature.agg.dependencies]
r-zoo = ">=1.8_15,<2"
r-stringi = ">=1.8.7,<2"
[feature.agg.tasks]
aggregate = { cmd = "Rscript aggregate-raw-data.R", cwd = "scripts" }
add_features = { cmd = "Rscript add-features.R", cwd = "scripts" }
[feature.ci.dependencies]
r-dplyr = "1.1.1.*"
r-knitr = ">=1.47,<2"
r-purrr = ">=1.0.2,<2"
r-readr = ">=2.1.5,<3"
r-stringr = ">=1.5.1,<2"
r-testthat = ">=3.2.1.1,<4"
r-withr = ">=3.0.0,<4"
[feature.ci.tasks]
tests = { cmd = "Rscript -e \"testthat::test_dir('.', stop_on_failure=TRUE)\"", cwd = "tests" }
[environments]
agg = { features = ["agg"] }
ci = { features = ["ci"] }