Skip to content

Commit

Permalink
Merge pull request #10 from dramanica/fix_check
Browse files Browse the repository at this point in the history
Remove dependency on maptools
  • Loading branch information
dramanica authored Oct 20, 2023
2 parents d0d54ac + 44cd998 commit 9d28cc4
Show file tree
Hide file tree
Showing 95 changed files with 2,972 additions and 4,524 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ README.Rmd
^\.Rproj\.user$
inst/shiny/.RData
inst/shiny/.Rhistory
^\.github$
data-raw
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
29 changes: 29 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 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, master, fix_check]
pull_request:
branches: [main, master]

name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-r@v2
with:
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
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

15 changes: 5 additions & 10 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: geoGraph
Type: Package
Title: Walking through the geographic space using graphs
Version: 1.1-1
Version: 1.1.1.9001
Author: Thibaut Jombart,
Andrea Manica
Maintainer: Andrea Manica <[email protected]>
Expand All @@ -16,21 +16,16 @@ Depends:
R (>= 3.5.0),
methods,
graph
Imports:
maptools,
MASS,
Imports:
fields,
RBGL,
RBGL,
sp
Remotes:
bioc::graph,
bioc::RBGL
Suggests:
testthat,
knitr,
rmarkdown,
BiocManager
RoxygenNote: 7.1.2
sf
RoxygenNote: 7.2.3
Collate:
'classes.R'
'accessors.R'
Expand Down
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export(getNodeCosts)
export(getNodes)
export(getNodesAttr)
export(hasCosts)
export(installDep.geoGraph)
export(is.gData)
export(is.gGraph)
export(isInArea)
Expand Down
Loading

0 comments on commit 9d28cc4

Please sign in to comment.