diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-17 19:57:44 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 00:57:42 +0100 |
commit | 65892b52ffb0705a8ffa8716f10b84c7de2890c7 (patch) | |
tree | d738cfa5c5482b464354013ae9fbd47a952de9de /gnu/packages/python-xyz.scm | |
parent | 5831ca332c4ef1ebaf8428f4618f65b44d5bc320 (diff) |
gnu: python-numpy: Fix build.
* gnu/packages/python-xyz.scm (python-numpy):
[native-inputs]: Replace python-setuptools and python-wheel with
maximum supported versions python-setuptools-67 and python-wheel-0.40.
Change-Id: Idf04968a0426442f53751d85906dc319a6f25a11
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2b8d89c1e8..cb472016f8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10360,7 +10360,7 @@ writing C extensions for Python as easy as Python itself.") ;; - URL <https://raw.githubusercontent.com/numpy/numpy> ;; - commit :: 2f3549c9d7c5048621568e431c86bc7530742723 ;; - file <doc/source/building/understanding_meson.rst> - (version "1.26.4") + (version "1.26.4") ;; This is the last planned release in the 1.26.x series. (source (origin (method url-fetch) @@ -10500,14 +10500,14 @@ include_dirs = ~:*~a/include~%" (native-inputs (list meson-python pkg-config - python-cython-0.29.35 ;overwrite Cython from meson-python + python-cython python-hypothesis python-mypy python-pytest python-pytest-xdist - python-setuptools + python-setuptools-67 ;see: <https://github.com/numpy/numpy/issues/27531> python-typing-extensions - python-wheel + python-wheel-0.40 ;; XXX: Avoid 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>. |