-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from dramanica/fix_check
Remove dependency on maptools
- Loading branch information
Showing
95 changed files
with
2,972 additions
and
4,524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ README.Rmd | |
^\.Rproj\.user$ | ||
inst/shiny/.RData | ||
inst/shiny/.Rhistory | ||
^\.github$ | ||
data-raw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> | ||
|
@@ -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' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.