mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-10 21:50:01 +01:00
gnu: python-cython: Update to 0.29.15.
* gnu/packages/python-xyz.scm (python-cython): Update to 0.29.15. [arguments]: Remove obsolete phase.
This commit is contained in:
parent
34e9aa7332
commit
3220e44f16
1 changed files with 2 additions and 20 deletions
|
@ -3280,14 +3280,14 @@ provides additional functionality on the produced Mallard documents.")
|
||||||
(define-public python-cython
|
(define-public python-cython
|
||||||
(package
|
(package
|
||||||
(name "python-cython")
|
(name "python-cython")
|
||||||
(version "0.29.13")
|
(version "0.29.15")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "Cython" version))
|
(uri (pypi-uri "Cython" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"13k37lrcgagwwnzr5bzririsscb793vndj234d475x1h9ad0d7f2"))))
|
"0c5cjyxfvba6c0vih1fvhywp8bpz30vwvbjqdm1q1k55xzhmkn30"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; we need the full python package and not just the python-wrapper
|
;; we need the full python package and not just the python-wrapper
|
||||||
;; because we need libpython3.3m.so
|
;; because we need libpython3.3m.so
|
||||||
|
@ -3299,24 +3299,6 @@ provides additional functionality on the produced Mallard documents.")
|
||||||
(add-before 'check 'set-HOME
|
(add-before 'check 'set-HOME
|
||||||
;; some tests require access to "$HOME/.cython"
|
;; some tests require access to "$HOME/.cython"
|
||||||
(lambda _ (setenv "HOME" "/tmp") #t))
|
(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
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Disable compiler optimizations to greatly reduce the running
|
;; Disable compiler optimizations to greatly reduce the running
|
||||||
|
|
Loading…
Add table
Reference in a new issue