diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-12-10 17:46:02 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-12-10 21:10:09 +0200 |
commit | a5db747515d06850cfef2425556560976d5a0993 (patch) | |
tree | c4a9a9707201ed2841d6adef0e4e32594a776da7 | |
parent | a87f448cbf0c9ec085b7e5caf2f94ffb96b83ccf (diff) |
gnu: julia-colortypes: Update to 0.11.1.
* gnu/packages/julia-xyz.scm (julia-colortypes): Update to 0.11.1.
[arguments]: Add phase to skip broken test.
-rw-r--r-- | gnu/packages/julia-xyz.scm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 98617c2c68..efc49f23a4 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -879,7 +879,7 @@ color scales for graphics.") (define-public julia-colortypes (package (name "julia-colortypes") - (version "0.11.0") + (version "0.11.1") (source (origin (method git-fetch) @@ -888,8 +888,17 @@ color scales for graphics.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0n7h70caqv7yd0khjhn90iax62r73mcif8qzkwj5b4q46li1r8ih")))) + (base32 "0cp5wbi2bhnxp4h7wpzkx341d47744f4c9a8n0w0kn016qa16m86")))) (build-system julia-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'skip-failing-test + (lambda _ + (substitute* "test/conversions.jl" + (("@test promote\\(RGB\\{N0f8") + "@test_broken promote(RGB{N0f8"))))))) (propagated-inputs (list julia-fixedpointnumbers)) (native-inputs |