You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2019/04/08 10:07:00 UTC

[arrow] branch master updated: ARROW-3804: [R] Support older versions of R runtime

This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 71e2576  ARROW-3804: [R] Support older versions of R runtime
71e2576 is described below

commit 71e257696330e72d53430f5f79d0c99090e490f6
Author: Javier Luraschi <ja...@hotmail.com>
AuthorDate: Mon Apr 8 12:06:45 2019 +0200

    ARROW-3804: [R] Support older versions of R runtime
    
    `vctrs` requires `3.1`: https://github.com/r-lib/vctrs/blob/master/DESCRIPTION#L15, but no functionality makes use of `3.5`, at least, not yet.
    
    Fix for: https://issues.apache.org/jira/browse/ARROW-3804
    
    Author: Javier Luraschi <ja...@hotmail.com>
    Author: Romain Francois <ro...@rstudio.com>
    
    Closes #2978 from javierluraschi/bugifx/r-version and squashes the following commits:
    
    a0f153f10 <Romain Francois> testing on released R
    105f6a187 <Javier Luraschi> also match travis r version
    1fcf99a1e <Javier Luraschi> lower requirement of r runtime
---
 r/DESCRIPTION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/r/DESCRIPTION b/r/DESCRIPTION
index 6f0ec77..7264820 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -8,7 +8,7 @@ Authors@R: c(
     person("Apache Arrow", email = "dev@arrow.apache.org", role = c("aut", "cph"))
   )
 Description: R Integration to 'Apache' 'Arrow'.
-Depends: R (>= 3.5)
+Depends: R (>= 3.1)
 License: Apache License (>= 2.0)
 Encoding: UTF-8
 LazyData: true