gnu: python-numpy-next: Update to 1.22.3.
* gnu/packages/python-xyz.scm (python-numpy-next): Update to 1.22.3. [native-inputs]: Replace python-hypothesis with python-hypothesis-6.23. * gnu/packages/python-xyz.scm (python-numpy-1.20)[native-inputs]: Explicitly set native-inputs to prevent it to inherit the modified native-inputs from python-numpy-next, which would result in > 2000 package rebuilds. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
b69fc147d7
commit
4980630d1e
|
@ -5693,7 +5693,7 @@ writing C extensions for Python as easy as Python itself.")
|
||||||
(define-public python-numpy-next
|
(define-public python-numpy-next
|
||||||
(package
|
(package
|
||||||
(name "python-numpy-next")
|
(name "python-numpy-next")
|
||||||
(version "1.21.3")
|
(version "1.22.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -5702,12 +5702,12 @@ writing C extensions for Python as easy as Python itself.")
|
||||||
version "/numpy-" version ".tar.gz"))
|
version "/numpy-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0s6hy8828yr7fcjiwnym4l8lrknr21gqfkaiawsf86n0hd0a5fyh"))))
|
"19dw91pqbqcniw2z57kiyqs1qp56g7kqy1bdyv664g8s62sc01m9"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list openblas))
|
(list openblas))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-cython python-hypothesis python-pytest
|
(list python-cython python-hypothesis-6.23 python-pytest
|
||||||
python-pytest-xdist gfortran))
|
python-pytest-xdist gfortran))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -5799,6 +5799,12 @@ capabilities.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"140zq9snx0di4id4g97vaw9zz8x2rfla5lp3a70j666f5030yd5p"))))
|
"140zq9snx0di4id4g97vaw9zz8x2rfla5lp3a70j666f5030yd5p"))))
|
||||||
|
;; python-numpy-next replaced python-hypothesis with
|
||||||
|
;; python-hypothesis-6.23. We switch it back here, to prevent
|
||||||
|
;; python-numpy-1.20 and its numerous dependents from being rebuilt.
|
||||||
|
(native-inputs
|
||||||
|
(list python-cython python-hypothesis python-pytest
|
||||||
|
python-pytest-xdist gfortran))
|
||||||
;; 92 tests fail, many of them because parts of the temp file name
|
;; 92 tests fail, many of them because parts of the temp file name
|
||||||
;; accidentally ends up in a comparison.
|
;; accidentally ends up in a comparison.
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Reference in New Issue