From 0cd12425026fe392569e945b4e8a9bc4163de3a7 Mon Sep 17 00:00:00 2001 From: Rob Wiederstein Date: Sun, 22 Feb 2026 20:32:31 -0500 Subject: [PATCH] Fix missing deps and roxygen2 version in deploy workflow Add tidymodels and here to DESCRIPTION Suggests so remotes::install_deps picks them up in CI. Explicitly install roxygen2 in deploy.yaml to ensure version >= 7.3.3 is available, matching the RoxygenNote declared in DESCRIPTION. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/deploy.yaml | 2 +- DESCRIPTION | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 1972b18..0e3425d 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -36,7 +36,7 @@ jobs: # First install 'renv' or 'remotes', then install project dependencies # Using remotes here as it's typically faster for CI if renv cache isn't available run: | - Rscript -e "install.packages(c('remotes', 'styler'))" + Rscript -e "install.packages(c('remotes', 'styler', 'roxygen2'))" Rscript -e "remotes::install_deps(dependencies = TRUE)" - name: Run Build Script diff --git a/DESCRIPTION b/DESCRIPTION index d2b6893..01bf13b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -43,8 +43,10 @@ Imports: yardstick Suggests: duckdb, + here, targets, tarchetypes, + tidymodels, knitr, spelling, testthat (>= 3.0.0),