Skip to content

Commit eb4f0b0

Browse files
committed
Merge branch 'master' into ridgeline-size
2 parents cce42cb + 524e228 commit eb4f0b0

12 files changed

+67
-58
lines changed

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
5454
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-
5555

56-
- name: Install system dependencies
56+
- name: Install system dependencies for linux
5757
if: runner.os == 'Linux'
5858
env:
5959
RHUB_PLATFORM: linux-x86_64-ubuntu-gcc
@@ -62,6 +62,15 @@ jobs:
6262
sysreqs=$(Rscript -e "cat(sysreqs::sysreq_commands('DESCRIPTION'))")
6363
sudo -s eval "$sysreqs"
6464
65+
- name: Install system dependencies for mac
66+
if: runner.os == 'MacOS'
67+
run: |
68+
curl -sL https://mac.r-project.org/libs-4/ |
69+
sed -n 's/.*href=\([^>]*x86_64.tar.gz\).*/\1/p' |
70+
xargs -I % sh -c 'curl https://mac.r-project.org/libs-4/% --output %; sudo tar fvxz % -C /usr/local --strip 2'
71+
ls -la /usr/local/lib
72+
ls -la /usr/local/include
73+
6574
- name: Install dependencies
6675
run: |
6776
remotes::install_deps(dependencies = TRUE)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- badges: start -->
44
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/bayesplot?color=blue)](https://cran.r-project.org/web/packages/bayesplot)
55
[![Downloads](https://cranlogs.r-pkg.org/badges/bayesplot?color=blue)](https://cran.rstudio.com/package=bayesplot)
6-
[![Travis-CI Build Status](https://travis-ci.org/stan-dev/bayesplot.svg?branch=master)](https://travis-ci.org/stan-dev/bayesplot)
6+
[![R-CMD-check](https://github.com/stan-dev/bayesplot/workflows/R-CMD-check/badge.svg)](https://github.com/stan-dev/bayesplot/actions?workflow=R-CMD-check)
77
[![codecov](https://codecov.io/gh/stan-dev/bayesplot/branch/master/graph/badge.svg)](https://codecov.io/gh/stan-dev/bayesplot)
88
<!-- badges: end -->
99

@@ -32,7 +32,7 @@ the tutorial [vignettes](https://mc-stan.org/bayesplot/articles/index.html),
3232
the examples throughout the package [documentation](https://mc-stan.org/bayesplot/reference/index.html),
3333
and the paper _Visualization in Bayesian workflow_:
3434

35-
* Gabry et al. (2019). Visualization in Bayesian workflow.
35+
* Gabry J, Simpson D, Vehtari A, Betancourt M, Gelman A (2019). Visualization in Bayesian workflow.
3636
_J. R. Stat. Soc. A_, 182: 389-402. doi:10.1111/rssa.12378.
3737
([journal version](https://rss.onlinelibrary.wiley.com/doi/full/10.1111/rssa.12378),
3838
[arXiv preprint](https://arxiv.org/abs/1709.01449),

tests/figs/ppc-discrete/ppc-rootogram-default.svg

Lines changed: 1 addition & 1 deletion
Loading

tests/figs/ppc-discrete/ppc-rootogram-style-hanging-prob-size.svg

Lines changed: 1 addition & 1 deletion
Loading

tests/figs/ppc-distributions/ppc-dens-default.svg

Lines changed: 9 additions & 9 deletions
Loading

tests/figs/ppc-distributions/ppc-freqpoly-alpha-binwidth-size.svg

Lines changed: 9 additions & 9 deletions
Loading

0 commit comments

Comments
 (0)