Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

min deps #517

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Integration Tests 🧪

on:
schedule:
- cron: '45 3 * * 0'
workflow_dispatch:
push:
branches:
- min_deps
Comment on lines +7 to +10
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to remove it once completed

Suggested change
workflow_dispatch:
push:
branches:
- min_deps


jobs:
dependency-test:
strategy:
fail-fast: false
matrix:
test-strategy: ["min", "release", "max"]
uses: insightsengineering/r.pkg.template/.github/workflows/verdepcheck.yaml@main
name: Dependency Test - ${{ matrix.test-strategy }} 🔢
secrets:
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
GCHAT_WEBHOOK: ${{ secrets.GCHAT_WEBHOOK }}
with:
strategy: ${{ matrix.test-strategy }}
46 changes: 31 additions & 15 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,37 +21,53 @@ Depends:
R (>= 4.0.0)
Imports:
checkmate (>= 2.0),
dplyr,
dplyr (>= 1.1.0),
dunlin (>= 0.1.3),
forcats (>= 1.0.0),
formatters (>= 0.5.0),
ggplot2 (>= 3.4.0),
glue,
magrittr,
glue (>= 1.3.2),
magrittr (>= 1.5),
methods,
nestcolor (>= 0.1.1),
purrr,
rlang,
purrr (>= 0.3.0),
rlang (>= 1.1.0),
rlistings (>= 0.2.2),
rtables (>= 0.6.1),
stringr,
tern (>= 0.8.2),
tibble,
stringr (>= 1.3.0),
tern (>= 0.8.2.9005),
tibble (>= 3.1.0),
utils
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0),
tidyr
knitr (>= 1.42),
testthat (>= 3.0.4),
tidyr (>= 1.0.0)
VignetteBuilder:
knitr
Remotes:
insightsengineering/dunlin@*release,
insightsengineering/formatters@*release,
insightsengineering/nestcolor@*release,
insightsengineering/rlistings@*release,
insightsengineering/rtables@*release,
insightsengineering/tern@*release
Config/Needs/verdepcheck:
mllg/checkmate,
tidyverse/dplyr,
insightsengineering/dunlin,
tidyverse/forcats,
insightsengineering/formatters,
tidyverse/ggplot2,
tidyverse/glue,
tidyverse/magrittr,
insightsengineering/nestcolor,
tidyverse/purrr,
r-lib/rlang,
insightsengineering/rlistings,
insightsengineering/rtables,
tidyverse/stringr,
insightsengineering/tern,
tidyverse/tibble,
yihui/knitr,
r-lib/testthat,
tidyverse/tidyr
Config/Needs/website: insightsengineering/nesttemplate
Config/testthat/edition: 3
Encoding: UTF-8
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
* Convert `AVISIT` to factor according to `AVISITN` as order in preprocessing.
* Add `CFBT01` template. `VST01`, `EGT01` and `LBT01` are now all following `CFBT01`. By default parameters are by page displayed.
* Update `EGT03` to use `ACTARMCD` as default arm variable, and remove the preprocessing of filtering to "HR".
* Specify minimal version of dependencies.

# chevron 0.2.0

* Remove the usage of `dm` class of object. The chevron functions now expect list of `data.frame` as `adam_db` argument.
* Remove the usage of `dm` class of object. The chevron functions now expect list of `data.frame` as `adam_db` argument.
* Remove variants in template names.
* Remove deprecated `getter` functions `get_main`, `get_preprocess` and `get_postprocess`.
* Simplify `pre` function and add more data checks in `main` function.
Expand Down