From c8b16a15238ece85227a2029d031c8d93abfcd3c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 16 Nov 2024 15:54:00 +0000 Subject: gnu: python-cython-3: Update to 3.0.11. Port test flags and check phase from python-cython to ease the process of exclusion failing tests. * gnu/packages/python-xyz.scm (python-cython-3): Update to 3.0.11. [surce]: Adjust URI name as it changed in PyPI. [build-system]: Swap to pyproject-build-system. [native-inputs]: Add python-setuptools, and python-wheel. Change-Id: I72b23a0e710a90fc78f93633319fb07edd0a8b20 --- gnu/packages/python-xyz.scm | 49 ++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 46 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index da83543779..b08ee63872 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8820,13 +8820,56 @@ writing C extensions for Python as easy as Python itself.") ;; Cython 3 is not officially released yet, so distinguish the name ;; for now. (name "python-cython-next") - (version "3.0.8") + (version "3.0.11") (source (origin (method url-fetch) - (uri (pypi-uri "Cython" version)) + (uri (pypi-uri "cython" version)) (sha256 (base32 - "1rlxscrn4bgdlbhjjikknbz5s2hyvn2rjfparry5wxnmiwyl4cw3")))) + "1zzsn60cl1qcz11h6c3miqayb7yfxdm1x19i2fk4qav8z0mdsiki")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags + #~(list "-vv" + "-j" (number->string (parallel-job-count)) + "-x" (string-join + (list "annotate_html" + "Debugger" + ;; It introduces cycle. + "numpy_test" + ;; It fails with AssertionError: Failed doctest test + ;; for complex_numbers_cpp.double_abs. + "complex_numbers_cpp" + ;; This test fails when running on 24 cores. + "cpp_stl_conversion" + ;; XXX: On 32-bit architectures, running the + ;; parallel tests fails on many-core systems, see + ;; . + #$@(if (not (target-64bit?)) + '("run.parallel") + '()) + #$@(if (system-hurd?) + '("test_class_ref" + "test_compiler_directives" + "test_lang_version") + '())) + "|")) + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? test-flags #:allow-other-keys) + ;; Disable compiler optimizations to greatly reduce the running + ;; time of the test suite. + (setenv "CFLAGS" "-O0") + ;; Some tests require access to "$HOME/.cython". + (setenv "HOME" "/tmp") + (when tests? + (apply invoke "python" "runtests.py" test-flags))))))) + (native-inputs + (list libxcrypt + python-setuptools + python-wheel)) (properties '()))) ;; NOTE: when upgrading numpy please make sure that python-numba, -- cgit v1.3