Skip to content
Prev 4232 / 12125 Next

[R-pkg-devel] (Not) Reporting minimum R version in DESCRIPTION Depends Field

On Fri, Jul 26, 2019 at 8:46 AM Ben Bolker <bbolker at gmail.com> wrote:
If you already use travis, this is pretty easy. All you need is something like:

matrix:
  include:
  - r: release
  - r: devel
  - r: oldrel
  - r: 3.4
  - r: 3.3
  - r: 3.2
  - r: 3.1

Obviously the challenge is making things work on older versions of R ?
in our experience this is either really easy (i.e. you just
accidentally used a function that was added to R recently) or really
rather hard (your code on works in recent R because of bug that R core
fixed)

Hadley