Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
rhijmans committed Jul 8, 2024
1 parent 07c792c commit b75f4c3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/recheck.yaml
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 }}
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: raster
Type: Package
Title: Geographic Data Analysis and Modeling
Version: 3.6-27
Date: 2024-01-03
Version: 3.6-28
Date: 2024-07-08
Imports: Rcpp, methods, terra (>= 1.7-29)
LinkingTo: Rcpp
Depends: sp (>= 1.4-5), R (>= 3.5.0)
Expand Down
2 changes: 1 addition & 1 deletion R/getData.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Version 0.9
# October 2008

getData <- function(name='GADM', download=TRUE, path='', ...) {
getData <- function(...) {

stop("getData has been removed. Please use the geodata package instead.")

Expand Down

0 comments on commit b75f4c3

Please sign in to comment.