~ruther/guix-local

72a1baae8f6b4c0d134e2fcb35795b4b83b8da90 — Ricardo Wurmus 1 year, 7 days ago 0eb2110
gnu: r-forecast: Update to 8.24.0.

* gnu/packages/cran.scm (r-forecast): Update to 8.24.0.
[properties]: Record updater-ignored-native-inputs.
[native-inputs]: Remove r-testthat.

Change-Id: Iacf882f23fbf371bce945e51cb154b92b3d8050b
1 files changed, 6 insertions(+), 4 deletions(-)

M gnu/packages/cran.scm
M gnu/packages/cran.scm => gnu/packages/cran.scm +6 -4
@@ 43169,15 43169,17 @@ Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
(define-public r-forecast
  (package
    (name "r-forecast")
    (version "8.23.0")
    (version "8.24.0")
    (source
     (origin
       (method url-fetch)
       (uri (cran-uri "forecast" version))
       (sha256
        (base32
         "100qi8cgr5dz3qskrgrsjn77m7szs5rfpgqfdwlgp67l708x9hzz"))))
    (properties `((upstream-name . "forecast")))
         "0ihnsrxz6y1ms4059ppdxyg854jdwvlvq7kaklvxzqx3pzqz22zv"))))
    (properties
     '((upstream-name . "forecast")
       (updater-ignored-native-inputs . ("r-seasonal"))))
    (build-system r-build-system)
    (propagated-inputs
     (list r-colorspace


@@ 43195,7 43197,7 @@ Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
           r-withr
           r-zoo))
    (native-inputs
     (list r-knitr r-testthat))           ; needed for vignettes
     (list r-knitr))
    (home-page "https://pkg.robjhyndman.com/forecast/")
    (synopsis "Forecasting functions for time series and linear models")
    (description