diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-18 09:47:54 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-08 16:49:01 +0100 |
commit | 390fdad7e3557d17b3bffc5da1dbe842b488dbe9 (patch) | |
tree | 5daae7492dfa47d1e2f16697f058d21a4abe67e5 | |
parent | c1ade92cf3a6796f697ad86212d6ee118ceeef5a (diff) |
gnu: python-numpy-2: Update to 2.3.1.
* gnu/packages/python-xyz.scm (python-numpy-2): Update to 2.3.1.
[arguments] <test-flags>: Skip one problematic test.
Change-Id: Icabac3ace4b14e29659a92ae7bea212d6e6d99f4
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 61d9f5dc59..1bd85437d6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10591,7 +10591,7 @@ capabilities.") (package (inherit python-numpy) (name "python-numpy") - (version "2.2.5") + (version "2.3.1") (source (origin (method url-fetch) @@ -10599,7 +10599,7 @@ capabilities.") "https://github.com/numpy/numpy/releases/download/v" version "/numpy-" version ".tar.gz")) (sha256 - (base32 "14f28cpmw3z8sk4lp5pylrk58220fclqnbkprfqr3n8cd2adkh59")))) + (base32 "0aqx8hsw54wfp7iv0h0ljlpsygvmrmi3rjic6rsa6v92lhhaxj8y")))) (arguments (list #:modules '((guix build utils) @@ -10607,7 +10607,11 @@ capabilities.") (ice-9 format)) #:test-flags #~(list "-m" "not slow" - "--numprocesses" (number->string (min 8 (parallel-job-count)))) + "--numprocesses" (number->string (min 8 (parallel-job-count))) + ;; See: <https://github.com/numpy/numpy/issues/27531>, + ;; <https://github.com/numpy/numpy/issues/17685>, + ;; <https://github.com/numpy/numpy/issues/17635>. + "-k" "not test_api_importable") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-executable-paths |