me
/
guix
Archived
1
0
Fork 0

gnu: python-plotnine: Fix build.

* gnu/packages/python-science.scm (python-plotnine): Fix build.
[arguments]<#:test-flags>: Add test_custom_shape to ignored tests.

Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
master
Troy Figiel 2024-01-18 10:43:42 +01:00 committed by Sharlatan Hellseher
parent 3e3975275b
commit 662ae5eac2
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 2 additions and 2 deletions

View File

@ -1741,8 +1741,6 @@ aggregated sum and more.")
(define-public python-plotnine (define-public python-plotnine
(package (package
(name "python-plotnine") (name "python-plotnine")
;; XXX Version 0.12.x exists, but we can't build it because we're still at
;; matplotlib 3.5. We'd need at least 3.6.
(version "0.10.1") (version "0.10.1")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
@ -1757,6 +1755,7 @@ aggregated sum and more.")
(arguments (arguments
(list (list
#:test-flags #:test-flags
;; XXX: Check for any new failing tests during next update cycle.
;; These all fail because the images are considered to be too different, ;; These all fail because the images are considered to be too different,
;; though they really do look fine. ;; though they really do look fine.
'(list "-k" (string-append '(list "-k" (string-append
@ -1774,6 +1773,7 @@ aggregated sum and more.")
"test_continuous_x_fullrange" "test_continuous_x_fullrange"
"test_coord_trans_backtransforms" "test_coord_trans_backtransforms"
"test_coord_trans_se_false" "test_coord_trans_se_false"
"test_custom_shape"
"test_datetime_scale_limits" "test_datetime_scale_limits"
"test_dir_v_ncol" "test_dir_v_ncol"
"test_discrete_x" "test_discrete_x"