diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-02-12 19:33:50 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-02-14 18:34:00 +0100 |
commit | 3220e44f1611c7a514e3bbcfef3b02157f4748fe (patch) | |
tree | 65b3ea99e4d7e3f93bc34c59adcca0bbb6798ad5 | |
parent | 34e9aa73328431361f128fe684b364ba11ee66e5 (diff) | |
download | patches-3220e44f1611c7a514e3bbcfef3b02157f4748fe.tar patches-3220e44f1611c7a514e3bbcfef3b02157f4748fe.tar.gz |
gnu: python-cython: Update to 0.29.15.
* gnu/packages/python-xyz.scm (python-cython): Update to 0.29.15.
[arguments]: Remove obsolete phase.
-rw-r--r-- | gnu/packages/python-xyz.scm | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4c01debed8..ddd877fc80 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3280,14 +3280,14 @@ provides additional functionality on the produced Mallard documents.") (define-public python-cython (package (name "python-cython") - (version "0.29.13") + (version "0.29.15") (source (origin (method url-fetch) (uri (pypi-uri "Cython" version)) (sha256 (base32 - "13k37lrcgagwwnzr5bzririsscb793vndj234d475x1h9ad0d7f2")))) + "0c5cjyxfvba6c0vih1fvhywp8bpz30vwvbjqdm1q1k55xzhmkn30")))) (build-system python-build-system) ;; we need the full python package and not just the python-wrapper ;; because we need libpython3.3m.so @@ -3299,24 +3299,6 @@ provides additional functionality on the produced Mallard documents.") (add-before 'check 'set-HOME ;; some tests require access to "$HOME/.cython" (lambda _ (setenv "HOME" "/tmp") #t)) - - ;; FIXME: These tests started failing on armhf after the 0.28 update - ;; (commit c69d11c5930), both with an error such as this: - ;; compiling (cpp) and running dictcomp ... - ;; === C/C++ compiler error output: === - ;; ‘ - ;; dictcomp.cpp:5221: confused by earlier errors, bailing out - ;; See <https://hydra.gnu.org/build/2948724> for logs. - ,@(if (target-arm32?) - `((add-before 'check 'disable-failing-tests - (lambda _ - (let ((disabled-tests (open-file "tests/bugs.txt" "a"))) - (for-each (lambda (test) - (format disabled-tests "~a\n" test)) - '("memslice" "dictcomp")) - (close-port disabled-tests))))) - '()) - (replace 'check (lambda _ ;; Disable compiler optimizations to greatly reduce the running |