From b2bf52ba1a8554ecd5e242b6646a84e9ea34ceca Mon Sep 17 00:00:00 2001 From: Tom Palmer Date: Thu, 26 Feb 2026 09:26:31 +0000 Subject: [PATCH 1/2] Add ignore condition for mr.raps Since a hard dependency of mr.raps - ggrepel now requires R 4.5.0 --- .github/workflows/check-full.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-full.yaml b/.github/workflows/check-full.yaml index 8fb371b3..6334ea7a 100644 --- a/.github/workflows/check-full.yaml +++ b/.github/workflows/check-full.yaml @@ -72,7 +72,7 @@ jobs: - uses: r-lib/actions/setup-r-dependencies@v2 with: extra-packages: > - any::rcmdcheck, MendelianRandomization=?ignore-before-r=4.4.0, car=?ignore-before-r=4.3.2, Cairo=?ignore-before-r=4.3.0, meta=?ignore-before-r=4.4.0 + any::rcmdcheck, MendelianRandomization=?ignore-before-r=4.4.0, car=?ignore-before-r=4.3.2, Cairo=?ignore-before-r=4.3.0, meta=?ignore-before-r=4.4.0, mr.raps=?ignore-before-r=4.5.0 needs: check upgrade: 'TRUE' From 52a13edc8664f0244665feab38b836efa4c51bfd Mon Sep 17 00:00:00 2001 From: Tom Palmer Date: Thu, 26 Feb 2026 09:31:17 +0000 Subject: [PATCH 2/2] Comment out installation of gettext --- .github/workflows/check-full.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-full.yaml b/.github/workflows/check-full.yaml index 6334ea7a..4162fc7d 100644 --- a/.github/workflows/check-full.yaml +++ b/.github/workflows/check-full.yaml @@ -64,7 +64,7 @@ jobs: - name: Install gettext system dependency on macOS for robustbase package build from source if: runner.os == 'macOS' run: | - brew install gettext + # brew install gettext mkdir -p ~/.R echo "CPPFLAGS=-I$(brew --prefix gettext)/include" >> ~/.R/Makevars echo "LDFLAGS=-L$(brew --prefix gettext)/lib" >> ~/.R/Makevars