Skip to content

Commit

Permalink
Merge pull request #77 from snlab-ch/develop
Browse files Browse the repository at this point in the history
Fixes CRAN comments
  • Loading branch information
auzaheta authored Aug 17, 2022
2 parents 658c0fe + 9d58ab3 commit c5a90e9
Show file tree
Hide file tree
Showing 91 changed files with 4,600 additions and 5,067 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/R-CMD-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: main
pull_request:
branches: main

name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v2

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

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
needs: website

- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE, examples = FALSE)
shell: Rscript {0}

- name: Deploy to GitHub pages 🚀
Expand Down
52 changes: 30 additions & 22 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ Encoding: UTF-8
Package: goldfish
Type: Package
Title: Statistical Network Models for Dynamic Network Data
Version: 1.6.2
Date: 2022-07-05
Version: 1.6.3
Date: 2022-08-09
Authors@R: c(person("James", "Hollway", role = c("cre", "aut", "dtc"),
email = "james.hollway@graduateinstitute.ch",
comment = c("IHEID", ORCID = "0000-0002-8361-9647")),
person("Christoph", "Stadtfeld", role = c("aut"), email = "c.stadtfeld@ethz.ch"),
email = "james.hollway@graduateinstitute.ch",
comment = c("IHEID", ORCID = "0000-0002-8361-9647")),
person("Christoph", "Stadtfeld", role = c("aut", "dtc"),
email = "c.stadtfeld@ethz.ch"),
person("Marion", "Hoffman", role = "ctb"),
person("Alvaro", "Uzaheta", role = "ctb"),
person("Alvaro", "Uzaheta", role = "ctb",
comment = c(ORCID = "0000-0003-4367-3670")),
person("Mirko", "Reul", role = "ctb"),
person("Timon", "Elmer", role = "ctb"),
person("Kieran", "Mepham", role = "ctb"),
Expand All @@ -18,26 +20,16 @@ Authors@R: c(person("James", "Hollway", role = c("cre", "aut", "dtc"),
person("Weigutian", "Ou", role = "ctb"),
person("Emily", "Garvin", role = "ctb"),
person("Siwei", "Zhang", role = "ctb"))
License: GPL (>= 3)
Description: Tools for fitting statistical network models to dynamic network data.
Can be used for fitting both dynamic network actor models ('DyNAMs') and
relational event models ('REMs').
URL: www.social-networks.ethz.ch/research/goldfish.html
Stadtfeld, Hollway, and Block (2017a) <doi:10.1177/0081175017709295>,
Stadtfeld, Hollway, and Block (2017b) <doi:10.1177/0081175017733457>,
Stadtfeld and Block (2017) <doi:10.15195/v4.a14>,
Hoffman et al. (2020) <doi:10.1017/nws.2020.3>.
URL: https://snlab-ch.github.io/goldfish/
BugReports: https://github.com/snlab-ch/goldfish/issues
Suggests:
testthat,
knitr,
devtools,
covr,
rmarkdown,
pixiedust,
igraph,
ggraph,
migraph,
broom
VignetteBuilder: knitr
License: GPL (>= 3) | file LICENSE
LazyData: true
RoxygenNote: 7.2.0
Depends: R (>= 3.5.0)
Imports:
Rcpp (>= 1.0.1),
Expand All @@ -51,5 +43,21 @@ Imports:
LinkingTo:
Rcpp,
RcppArmadillo
Suggests:
testthat,
knitr,
devtools,
covr,
rmarkdown,
pixiedust,
igraph,
ggraph,
migraph,
broom,
lmtest
VignetteBuilder: knitr
LazyData: true
RoxygenNote: 7.2.1
Roxygen: list(markdown = TRUE)
NeedsCompilation: yes
Config/testthat/edition: 3
Loading

0 comments on commit c5a90e9

Please sign in to comment.