mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-28 19:56:59 -06:00
gnu: r-arrow: Update to 22.0.0.
* gnu/packages/cran.scm (r-arrow): Update to 22.0.0. [arguments]: Skip one more test in 'delete-bad-tests. [native-inputs]: Remove r-readr. Change-Id: If53e865a20f390c8f384fc8855cbf6741a46a8c3
This commit is contained in:
parent
272cdb9acd
commit
5b4e88d5ac
1 changed files with 8 additions and 4 deletions
|
|
@ -38472,14 +38472,14 @@ colored by the number of neighboring points. This is useful to visualize the
|
|||
(define-public r-arrow
|
||||
(package
|
||||
(name "r-arrow")
|
||||
(version "21.0.0")
|
||||
(version "22.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "arrow" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1ipwcgzbzr5xb1ff0ikwxdfhbniqdjmvi4505cmb0divg9p50946"))))
|
||||
"1ax8ivyhcc9r9wdzvjqbw06ky5mq0n3rp3zaw96kjxrcidf4z1ka"))))
|
||||
(properties
|
||||
`((upstream-name . "arrow")
|
||||
(updater-ignored-native-inputs . ("r-duckdb"))
|
||||
|
|
@ -38494,7 +38494,12 @@ colored by the number of neighboring points. This is useful to visualize the
|
|||
(add-after 'unpack 'delete-bad-tests
|
||||
(lambda _
|
||||
;; Two tests fail with "Cannot locate timezone"
|
||||
(delete-file "tests/testthat/test-dataset-dplyr.R")))
|
||||
(delete-file "tests/testthat/test-dataset-dplyr.R")
|
||||
;; Error: NotImplemented: Function 'greater' has no kernel
|
||||
;; matching input types (timestamp[us, tz=UTC], string)
|
||||
(substitute* "tests/testthat/test-dplyr-query.R"
|
||||
((".*Scalars in expressions match the type of the field, if possible.*" m)
|
||||
(string-append m "skip('skip');\n")))))
|
||||
;; Some test fail when the current locale is the C locale.
|
||||
(add-before 'check 'set-test-locale
|
||||
(lambda _ (setenv "LC_ALL" "en_US.UTF-8")))
|
||||
|
|
@ -38526,7 +38531,6 @@ colored by the number of neighboring points. This is useful to visualize the
|
|||
r-hms
|
||||
r-jsonlite
|
||||
r-lubridate
|
||||
r-readr
|
||||
r-remotes
|
||||
r-reticulate
|
||||
r-stringi
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue