Skip to content

Commit e1659ae

Browse files
committed
shorten package check time (requested by CRAN)
1 parent f92faec commit e1659ae

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: bayesplot
22
Type: Package
33
Title: Plotting for Bayesian Models
44
Version: 1.6.0
5-
Date: 2018-07-27
5+
Date: 2018-08-01
66
Authors@R: c(person("Jonah", "Gabry", role = c("aut", "cre"), email = "[email protected]"),
77
person("Tristan", "Mahr", role = "aut"),
88
person("Paul-Christian", "Bürkner", role = "ctb"),
@@ -18,7 +18,7 @@ License: GPL (>= 3)
1818
LazyData: TRUE
1919
URL: http://mc-stan.org/bayesplot
2020
BugReports: https://github.com/stan-dev/bayesplot/issues/
21-
SystemRequirements: pandoc
21+
SystemRequirements: pandoc (>= 1.12.3), pandoc-citeproc
2222
Depends:
2323
R (>= 3.1.0)
2424
Imports:

vignettes/children/SETTINGS-knitr.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ knitr::opts_chunk$set(
88
fig.width = 5,
99
out.width = "60%",
1010
fig.align = "center",
11-
comment = NA
11+
comment = NA,
12+
eval = params$EVAL
1213
)
1314
```

vignettes/graphical-ppcs.Rmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ output:
66
rmarkdown::html_vignette:
77
toc: true
88
toc_depth: 3
9+
params:
10+
EVAL: !r identical(Sys.getenv("NOT_CRAN"), "true")
911
vignette: >
1012
%\VignetteIndexEntry{Graphical posterior predictive checks}
1113
%\VignetteEngine{knitr::rmarkdown}

vignettes/plotting-mcmc-draws.Rmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ output:
66
rmarkdown::html_vignette:
77
toc: true
88
toc_depth: 3
9+
params:
10+
EVAL: !r identical(Sys.getenv("NOT_CRAN"), "true")
911
vignette: >
1012
%\VignetteIndexEntry{Plotting MCMC draws}
1113
%\VignetteEngine{knitr::rmarkdown}

vignettes/visual-mcmc-diagnostics.Rmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ output:
66
rmarkdown::html_vignette:
77
toc: true
88
toc_depth: 3
9+
params:
10+
EVAL: !r identical(Sys.getenv("NOT_CRAN"), "true")
911
vignette: >
1012
%\VignetteIndexEntry{Visual MCMC diagnostics}
1113
%\VignetteEngine{knitr::rmarkdown}

0 commit comments

Comments
 (0)