Skip to content

Commit 1b7a64f

Browse files
committed
Precompute vignette, disable examples
To please BDR
1 parent 61ea5ac commit 1b7a64f

File tree

8 files changed

+508
-43
lines changed

8 files changed

+508
-43
lines changed

.github/workflows/R-CMD-check.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
config:
19-
- {os: macOS-latest, r: 'release'}
19+
- {os: macOS-13, r: 'release'}
20+
- {os: macOS-14, r: 'release'}
2021
- {os: windows-latest, r: '3.6'}
2122
- {os: windows-latest, r: '4.1'}
2223
- {os: windows-latest, r: 'release'}
@@ -29,7 +30,7 @@ jobs:
2930
R_KEEP_PKG_SOURCE: yes
3031

3132
steps:
32-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3334

3435
- uses: r-lib/actions/setup-pandoc@v2
3536

@@ -46,4 +47,4 @@ jobs:
4647

4748
- uses: r-lib/actions/check-r-package@v2
4849
with:
49-
upload-snapshots: true
50+
args: 'c("--no-manual", "--as-cran", "--run-donttest")'

DESCRIPTION

-4
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@ Imports: Rcpp, digest
2121
LinkingTo: Rcpp (>= 0.12.12)
2222
Suggests: spelling,
2323
testthat,
24-
pdftools,
25-
janeaustenr,
26-
wordcloud2,
2724
knitr,
28-
stopwords,
2925
rmarkdown
3026
VignetteBuilder: knitr
3127
RoxygenNote: 7.2.3

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
3.0.4
2+
- Disable some examples and vignettes for CRAN policy
3+
14
3.0.3
25
- Skip a test on MacOS because of buggy iconv in Sonoma
36
- Remove CXX11

R/hunspell.R

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
#' hunspell_stem(words)
7878
#' hunspell_analyze(words)
7979
#'
80+
#' \donttest{
8081
#' # Check an entire latex document
8182
#' tmpfile <- file.path(tempdir(), "1406.4806v1.tar.gz")
8283
#' download.file("https://arxiv.org/e-print/1406.4806v1", tmpfile, mode = "wb")
@@ -89,6 +90,7 @@
8990
#' allwords <- hunspell_parse(text, format = "latex")
9091
#' stems <- unlist(hunspell_stem(unlist(allwords)))
9192
#' words <- head(sort(table(stems), decreasing = TRUE), 200)
93+
#' }
9294
hunspell <- function(text, format = c("text", "man", "latex", "html", "xml"),
9395
dict = dictionary("en_US"), ignore = en_stats){
9496
stopifnot(is.character(text))

man/hunspell.Rd

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)