-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
Update to v2.1.0
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ ci_dependencies | |
^CRAN-SUBMISSION$ | ||
^codecov.yml | ||
^data-raw$ | ||
.covrignore |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ R/download_worldclim_future.R | |
R/download_etopo.R | ||
R/load_etopo.R | ||
R/download_chelsa.R | ||
R/download_chelsa_trace21k.R |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
which: | ||
type: choice | ||
description: Which dependents to check | ||
options: | ||
- strong | ||
- most | ||
|
||
name: Reverse dependency check | ||
|
||
jobs: | ||
revdep_check: | ||
name: Reverse check ${{ inputs.which }} dependents | ||
uses: r-devel/recheck/.github/workflows/recheck.yml@v1 | ||
with: | ||
which: ${{ inputs.which }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# R-hub's generic GitHub Actions workflow file. It's canonical location is at | ||
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml | ||
# You can update this file to a newer version using the rhub2 package: | ||
# | ||
# rhub::rhub_setup() | ||
# | ||
# It is unlikely that you need to modify this file manually. | ||
|
||
name: R-hub | ||
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}" | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
config: | ||
description: 'A comma separated list of R-hub platforms to use.' | ||
type: string | ||
default: 'linux,windows,macos' | ||
name: | ||
description: 'Run name. You can leave this empty now.' | ||
type: string | ||
id: | ||
description: 'Unique ID. You can leave this empty now.' | ||
type: string | ||
|
||
jobs: | ||
|
||
setup: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
containers: ${{ steps.rhub-setup.outputs.containers }} | ||
platforms: ${{ steps.rhub-setup.outputs.platforms }} | ||
|
||
steps: | ||
# NO NEED TO CHECKOUT HERE | ||
- uses: r-hub/actions/setup@v1 | ||
with: | ||
config: ${{ github.event.inputs.config }} | ||
id: rhub-setup | ||
|
||
linux-containers: | ||
needs: setup | ||
if: ${{ needs.setup.outputs.containers != '[]' }} | ||
runs-on: ubuntu-latest | ||
name: ${{ matrix.config.label }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: ${{ fromJson(needs.setup.outputs.containers) }} | ||
container: | ||
image: ${{ matrix.config.container }} | ||
|
||
steps: | ||
- uses: r-hub/actions/checkout@v1 | ||
- uses: r-hub/actions/platform-info@v1 | ||
with: | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
job-config: ${{ matrix.config.job-config }} | ||
- uses: r-hub/actions/setup-deps@v1 | ||
with: | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
job-config: ${{ matrix.config.job-config }} | ||
- uses: r-hub/actions/run-check@v1 | ||
with: | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
job-config: ${{ matrix.config.job-config }} | ||
|
||
other-platforms: | ||
needs: setup | ||
if: ${{ needs.setup.outputs.platforms != '[]' }} | ||
runs-on: ${{ matrix.config.os }} | ||
name: ${{ matrix.config.label }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: ${{ fromJson(needs.setup.outputs.platforms) }} | ||
|
||
steps: | ||
- uses: r-hub/actions/checkout@v1 | ||
- uses: r-hub/actions/setup-r@v1 | ||
with: | ||
job-config: ${{ matrix.config.job-config }} | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
- uses: r-hub/actions/platform-info@v1 | ||
with: | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
job-config: ${{ matrix.config.job-config }} | ||
- uses: r-hub/actions/setup-deps@v1 | ||
with: | ||
job-config: ${{ matrix.config.job-config }} | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
- uses: r-hub/actions/run-check@v1 | ||
with: | ||
job-config: ${{ matrix.config.job-config }} | ||
token: ${{ secrets.RHUB_TOKEN }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Version: 2.0.0 | ||
Date: 2023-11-01 17:32:06 UTC | ||
SHA: dc93c5c9f92f52ac7b178eac2b7095536868867d | ||
Version: 2.1.0 | ||
Date: 2024-06-19 15:11:32 UTC | ||
SHA: 632c24b70ad487380186aaad24532545b4ffda56 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
Package: pastclim | ||
Type: Package | ||
Title: Manipulate Time Series of Palaeoclimate Reconstructions | ||
Version: 2.0.0.9003 | ||
Version: 2.1.0 | ||
Authors@R: c( | ||
person("Michela", "Leonardi", role = "aut"), | ||
person(c("Emily","Y."), "Hallet", role = "ctb"), | ||
person("Robert", "Beyer", role = "ctb"), | ||
person("Mario", "Krapp", role = "ctb"), | ||
person(c("Andrea", "V."), "Pozzi", role = "ctb"), | ||
person("Andrea", "Manica", role = c("aut","cre"), | ||
email = "[email protected]") | ||
) | ||
|
@@ -22,7 +23,7 @@ BugReports: https://github.com/EvolEcolGroup/pastclim/issues | |
Encoding: UTF-8 | ||
LazyData: true | ||
LazyDataCompression: xz | ||
RoxygenNote: 7.3.0 | ||
RoxygenNote: 7.3.1 | ||
Roxygen: list(markdown = TRUE) | ||
Depends: | ||
R (>= 4.0.0), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
## This is a re-submission | ||
DOI incorrectly started with doi.org/; they have all now been fixed and raised | ||
no issues with any check. | ||
## This is a resubmission | ||
The previous submission raised: | ||
Check: Rd cross-references, Result: NOTE | ||
Found the following Rd file(s) with Rd \link{} targets missing package | ||
anchors: | ||
location_slice_from_region_series.Rd: SpatRasterDataset | ||
slice_region_series.Rd: SpatRaster | ||
Please provide package anchors for all Rd \link{} targets not in the | ||
package itself and the base packages. | ||
|
||
Those links have now been fixed with the appropriate package anchors. | ||
|
||
## Test environments | ||
- R-hub windows-x86_64-devel (r-devel) | ||
- R-hub ubuntu-gcc-release (r-release) | ||
- R-hub fedora-clang-devel (r-devel) | ||
- R-hub linux (r-devel) | ||
- R-hub macos (r-devel) | ||
- R-hub macos-arm64 (r-devel) | ||
- devtools::check_mac_release | ||
- devtools::check_win_devel | ||
|
||
No NOTES on any environment. | ||
|
||
## Checks on CRAN for previous version of pastclim | ||
As detailed in: | ||
https://cloud.r-project.org/web/checks/check_results_pastclim.html | ||
|
||
there are failures with r-oldrel-macos-arm64 and r-oldrel-macos-x86-64. Old | ||
versions on mac of `terra`, on which `pastclim` relies, were problematic. This | ||
affected other packages as well: https://github.com/r-spatial/stars/issues/566 | ||
Pastclim works on r-oldrel-windows-x86-64, as well as on all other release and | ||
devel versions. | ||
|
||
There were notes on a r-devel, which picked up a man page where a parameter | ||
was named incorrectly. That has been fixed in the current version. | ||
there are no failures on the previous version (2.0.0) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.