mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: julia-dataframes: Update to 1.3.6.
* gnu/packages/julia-xyz.scm (julia-dataframes): Update to 1.3.6. [arguments]: Adjust 'skip-failing-test phase to adjust a test to pass with julia-1.8. [propagated-inputs]: Add julia-categoricalarrays, julia-compat, julia-shiftedarrays, julia-unitful. [native-inputs]: Add julia-shiftedarrays.
This commit is contained in:
parent
8154f07422
commit
0147f38df6
1 changed files with 14 additions and 5 deletions
|
@ -1269,7 +1269,7 @@ (define-public julia-dataapi
|
|||
(define-public julia-dataframes
|
||||
(package
|
||||
(name "julia-dataframes")
|
||||
(version "1.2.2")
|
||||
(version "1.3.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -1278,7 +1278,7 @@ (define-public julia-dataframes
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1bk0amrghgjrkyn1mm4ac23swwbgszl1d0qyl9137qj5zvv9dasp"))))
|
||||
(base32 "01ybc1ckn5wi7kwp29g5ms4m3g650856z4xv71racbdr8475pmg5"))))
|
||||
(build-system julia-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -1295,24 +1295,33 @@ (define-public julia-dataframes
|
|||
(string-append all "return\n")))
|
||||
(substitute* "test/join.jl"
|
||||
(("test (levels\\(outerjoin\\(B)" _ test)
|
||||
(string-append "test_nowarn " test))))))))
|
||||
(string-append "test_nowarn " test)))
|
||||
;; Compat with julia-1.8, remove with next package update.
|
||||
(substitute* "test/indexing_offset.jl"
|
||||
(("@test_throws ErrorException")
|
||||
"@test_throws Base.CanonicalIndexError")))))))
|
||||
(propagated-inputs
|
||||
(list julia-dataapi
|
||||
(list julia-categoricalarrays
|
||||
julia-compat
|
||||
julia-dataapi
|
||||
julia-invertedindices
|
||||
julia-iteratorinterfaceextensions
|
||||
julia-missings
|
||||
julia-pooledarrays
|
||||
julia-prettytables
|
||||
julia-reexport
|
||||
julia-shiftedarrays
|
||||
julia-sortingalgorithms
|
||||
julia-tables
|
||||
julia-tabletraits))
|
||||
julia-tabletraits
|
||||
julia-unitful))
|
||||
(native-inputs
|
||||
(list julia-categoricalarrays
|
||||
julia-combinatorics
|
||||
julia-datastructures
|
||||
julia-datavalues
|
||||
julia-offsetarrays
|
||||
julia-shiftedarrays
|
||||
julia-unitful))
|
||||
(home-page "https://dataframes.juliadata.org/stable/")
|
||||
(synopsis "In-memory tabular data")
|
||||
|
|
Loading…
Reference in a new issue