Skip to content

Commit 6f304cb

Browse files
authored
Merge pull request #155 from pharmaverse/copilot/remove-reactablefmtr-package
Closes #154 Remove `reactablefmtr` dependency (dropped from CRAN) and fix CI build
2 parents e2a997c + aa038a5 commit 6f304cb

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/docs.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ jobs:
4141
- name: Set up Quarto
4242
uses: quarto-dev/quarto-actions/setup@v2
4343

44+
- name: Install Jupyter
45+
run: python3 -m pip install jupyter
46+
4447
- name: Setup R
4548
uses: r-lib/actions/setup-r@v2
4649

DESCRIPTION

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ Imports:
4040
pharmaverseadam,
4141
pkglite,
4242
reactable,
43-
reactablefmtr,
4443
rtables,
4544
rtables.officer,
4645
rlistings,

functions/print_df.R

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
library(reactable)
2-
library(reactablefmtr)
32

43
print_df <- function(dataset, n = 10) {
54
out <- dataset
@@ -20,8 +19,5 @@ print_df <- function(dataset, n = 10) {
2019
highlightColor = "#dfe6f2",
2120
cellPadding = "8px"
2221
)
23-
) %>%
24-
add_title("Sample of Data",
25-
font_size = 16
26-
)
22+
)
2723
}

0 commit comments

Comments
 (0)