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

Adds min package version #182

Merged
merged 10 commits into from
Sep 13, 2023
2 changes: 1 addition & 1 deletion .github/workflows/scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
test-strategy: ["min", "release", "max"]
test-strategy: ["min_cohort", "min_isolated", "release", "max"]
uses: insightsengineering/r.pkg.template/.github/workflows/verdepcheck.yaml@main
name: Dependency Test - ${{ matrix.test-strategy }} 🔢
secrets:
Expand Down
32 changes: 20 additions & 12 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,38 @@ Description: We provide a framework for rendering complex tables to ASCII,
License: Apache License 2.0
URL: https://github.com/insightsengineering/formatters
BugReports: https://github.com/insightsengineering/formatters/issues
Depends:
Depends:
methods,
R (>= 2.10)
Imports:
checkmate,
Imports:
checkmate (>= 2.1.0),
grid,
htmltools
htmltools (>= 0.5.3)
Suggests:
dplyr,
dplyr (>= 1.0.9),
gt (>= 0.7.0),
huxtable,
knitr,
r2rtf,
rmarkdown,
testthat
VignetteBuilder:
huxtable (>= 2.0.0),
knitr (>= 1.42),
r2rtf (>= 0.3.2),
testthat (>= 3.0.4)
VignetteBuilder:
knitr
Config/Needs/verdepcheck:
mllg/checkmate,
rstudio/htmltools,
tidyverse/dplyr,
rstudio/gt,
hughjonesd/huxtable,
yihui/knitr,
Merck/r2rtf,
r-lib/testthat
Config/Needs/website: insightsengineering/nesttemplate
Encoding: UTF-8
Language: en-US
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Collate:
Collate:
'data.R'
'format_value.R'
'matrix_form.R'
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## formatters 0.5.2.9001
* Specified minimal version of package dependencies.

## formatters 0.5.2
* `paginate_to_mpfs` can handle single column tables and listings.
Expand Down