r-reticulate: add version; dependencies (#16747)

* Add version 1.15
* Add link dependency on r-rcpp
* Add dependency on r-rappdirs
This commit is contained in:
Amjad Kotobi 2020-05-23 04:17:11 +02:00 committed by GitHub
parent e18c5316bd
commit 3a336b328a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,10 +17,12 @@ class RReticulate(RPackage):
url = "https://cloud.r-project.org/src/contrib/reticulate_1.13.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/reticulate"
version('1.15', sha256='47db3e9c9424263ade15287da8e74f6ba261a936b644b197dba6772853b7b50d')
version('1.13', sha256='adbe41d556b667c4419d563680f8608a56b0f792b8bc427b3bf4c584ff819de3')
depends_on('r@3.0:', type=('build', 'run'))
depends_on('r-jsonlite', type=('build', 'run'))
depends_on('r-rcpp@0.12.7:', type=('build', 'run'))
depends_on('r-rcpp@0.12.7:', type=('build', 'run', 'link'))
depends_on('r-matrix', type=('build', 'run'))
depends_on('r-rappdirs', when='@1.15:', type=('build', 'run'))
depends_on('python@2.7.0:')