[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/11: gnu: Add python-numpy-1.20.
From: |
guix-commits |
Subject: |
08/11: gnu: Add python-numpy-1.20. |
Date: |
Sat, 20 Nov 2021 06:05:01 -0500 (EST) |
rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit d8b79867696e0c79623925df500cf2973b35a793
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Nov 20 01:00:37 2021 +0100
gnu: Add python-numpy-1.20.
* gnu/packages/python-xyz.scm (python-numpy-1.20): New variable.
---
gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 74f1879..6265770 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5345,6 +5345,25 @@ capabilities.")
(base32
"0lg1cycxzi4rvvrd5zxinpdz0ni792fpx6xjd75z1923zcac8qrb")))))))
+;; Needed by python-numba, see https://github.com/numba/numba/issues/7176
+(define-public python-numpy-1.20
+ (package
+ (inherit python-numpy)
+ (version "1.20.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/numpy/numpy/releases/download/v"
+ version "/numpy-" version ".tar.gz"))
+ (sha256
+ (base32
+ "140zq9snx0di4id4g97vaw9zz8x2rfla5lp3a70j666f5030yd5p"))))
+ ;; 92 tests fail, many of them because parts of the temp file name
+ ;; accidentally ends up in a comparison.
+ (arguments
+ (substitute-keyword-arguments (package-arguments python-numpy)
+ ((#:tests? _ #t) #f)))))
+
;; NOTE: NumPy 1.8 is packaged only for Python 2 because it is of
;; interest only for legacy code going back to NumPy's predecessor
;; Numeric.
- branch core-updates-frozen updated (2db788f -> 83580b9), guix-commits, 2021/11/20
- 02/11: gnu: python-pytorch: Use ADD-INSTALLED-PYTHONPATH., guix-commits, 2021/11/20
- 03/11: gnu: python-pytorch: Add missing input., guix-commits, 2021/11/20
- 04/11: gnu: python-pytorch: Warn of missing test inputs., guix-commits, 2021/11/20
- 01/11: gnu: opendht: Use GUIX_PYTHONPATH., guix-commits, 2021/11/20
- 07/11: gnu: repo2docker: Use GUIX_PYTHONPATH., guix-commits, 2021/11/20
- 05/11: gnu: python-llvmlite: Remove trailing #T., guix-commits, 2021/11/20
- 06/11: gnu: python-llvmlite: Update to 0.37.0., guix-commits, 2021/11/20
- 08/11: gnu: Add python-numpy-1.20.,
guix-commits <=
- 09/11: gnu: python-numba: Remove trailing #T., guix-commits, 2021/11/20
- 10/11: gnu: python-numba: Run tests conditionally., guix-commits, 2021/11/20
- 11/11: gnu: python-numba: Update to 0.54.1., guix-commits, 2021/11/20