[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
335/361: gnu: python-numpy: Update to 1.24.4.
From: |
guix-commits |
Subject: |
335/361: gnu: python-numpy: Update to 1.24.4. |
Date: |
Fri, 22 Nov 2024 06:01:09 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit 8eaf74861f5703700afbb3df533b8606c539d23d
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Nov 16 16:52:45 2024 +0000
gnu: python-numpy: Update to 1.24.4.
* gnu/packages/python-xyz.scm (python-numpy): Update to 1.24.4.
[native-inputs]: Add meson-python, pkg-config, python-mypy,
python-setuptools, and
python-wheel.
Change-Id: Icb2dfc04411d2eb87be25c336239c6f178fa5be2
---
gnu/packages/python-xyz.scm | 34 ++++++++++++++++++++++++++++------
1 file changed, 28 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b05791e5bc..fb749d6a80 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8850,7 +8850,11 @@ writing C extensions for Python as easy as Python
itself.")
(define-public python-numpy
(package
(name "python-numpy")
- (version "1.23.2")
+ ;; XXX: Any other versions up to 1.26.4 failed to build with error similar
+ ;; to: 'fenv_t' has not been declared in '::' 58 | using ::fenv_t;
+ ;; See
<https://github.com/numpy/numpy/issues/21075#issuecomment-1047976197>,
+ ;; <https://github.com/numpy/numpy/issues/24318>.
+ (version "1.24.4")
(source
(origin
(method url-fetch)
@@ -8859,12 +8863,12 @@ writing C extensions for Python as easy as Python
itself.")
version "/numpy-" version ".tar.gz"))
(sha256
(base32
- "00bx3idjwhmzkdawg2dx1bp0316ig37jfx0dm82bvyv1hbj013dp"))))
- (build-system python-build-system)
+ "0qwldmkq5bns561ppkz7psphc4jqfj5j1x4dhq0i8r4qwjjf7xc0"))))
+ (build-system pyproject-build-system)
(arguments
(list
#:modules '((guix build utils)
- (guix build python-build-system)
+ (guix build pyproject-build-system)
(ice-9 format))
#:phases
#~(modify-phases %standard-phases
@@ -8904,6 +8908,11 @@ include_dirs = ~:*~a/include~%"
;; does *not* automatically provide -n when -j is used
;; (see: https://github.com/numpy/numpy/issues/21359).
"--" "-n" (number->string (parallel-job-count))
+ ;; Disable Pytest Warnings, they are resolved in the
+ ;; latest 1.x.x: pytest.PytestRemovedIn9Warning: Marks
+ ;; applied to fixtures have no effect,
+ ;; DeprecationWarning.
+ "-p" "no:warnings"
"-k" (string-append
;; These tests may fail on 32-bit systems (see:
;; https://github.com/numpy/numpy/issues/18387).
@@ -8913,6 +8922,14 @@ include_dirs = ~:*~a/include~%"
;; x86_64 CPUs such as the Core 2 Duo (see:
;; https://github.com/numpy/numpy/issues/22170).
"and not test_rint_big_int "
+ ;; They fail to detect compiler.
+ "and not test_compile1 "
+ "and not test_compile2 "
+ ;; Due to disabled warnings
+ "and not test_getattr_warning "
+ "and not test_integer_signs "
+ "and not test_implicit_cast_float_to_int_fails "
+ "and not test_integer_signs "
;; The huge_array test is too large for 32-bit
(see:
;; https://bugs.gentoo.org/843599 and
;; https://bugs.gentoo.org/846548).
@@ -8934,12 +8951,17 @@ include_dirs = ~:*~a/include~%"
" and not test_fpclass")
'())))))))))
(native-inputs
- (list python-cython
+ (list gfortran
+ meson-python
+ pkg-config
+ python-cython ;; overwrite Cython from meson-python
python-hypothesis
+ python-mypy
python-pytest
python-pytest-xdist
+ python-setuptools
python-typing-extensions
- gfortran))
+ python-wheel))
(inputs (list bash openblas))
(home-page "https://numpy.org")
(synopsis "Fundamental package for scientific computing with Python")
- 37/361: gnu: python-eventlet: Update to 0.35.2., (continued)
- 37/361: gnu: python-eventlet: Update to 0.35.2., guix-commits, 2024/11/22
- 43/361: gnu: python-pytest-arraydiff: Add missing inputs., guix-commits, 2024/11/22
- 75/361: gnu: Add python-nbclassic., guix-commits, 2024/11/22
- 202/361: gnu: python-uqbar: Upgrade to python-team branch., guix-commits, 2024/11/22
- 279/361: gnu: python-pysolr: Update to 3.10.0., guix-commits, 2024/11/22
- 304/361: gnu: python-pexpect: Improve package style., guix-commits, 2024/11/22
- 312/361: gnu: python-pytest-cov: Update to 6.0.0., guix-commits, 2024/11/22
- 316/361: gnu: python-cffi: Improve package style., guix-commits, 2024/11/22
- 318/361: gnu: python-parso: Update to 0.8.4., guix-commits, 2024/11/22
- 329/361: gnu: python-cython-3: Update to 3.0.11., guix-commits, 2024/11/22
- 335/361: gnu: python-numpy: Update to 1.24.4.,
guix-commits <=
- 336/361: gnu: python-isort: Update to 5.13.2., guix-commits, 2024/11/22
- 352/361: gnu: python-apispec: Update to 6.7.1., guix-commits, 2024/11/22
- 53/361: gnu: python-dbus-python: Add missing input., guix-commits, 2024/11/22
- 64/361: gnu: Add python-pep440., guix-commits, 2024/11/22
- 73/361: gnu: Add python-pytest-jupyter., guix-commits, 2024/11/22
- 69/361: gnu: Add python-uri-template., guix-commits, 2024/11/22
- 66/361: gnu: Add python-jsonschema-specifications., guix-commits, 2024/11/22
- 79/361: gnu: python-argon2-cffi: Update to 21.1.0., guix-commits, 2024/11/22
- 80/361: gnu: python-jsonschema: Update to 4.22.0., guix-commits, 2024/11/22
- 89/361: gnu: python-nbformat: Update to 5.10.4., guix-commits, 2024/11/22