From c69d11c593036b4c188824f6b595bfe88bc46aca Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 12 Jun 2018 16:03:43 -0400 Subject: gnu: Cython: Update to 0.28.4. * gnu/packages/python.scm (python-cython, python2-cython): Update to 0.28.4. [arguments]: Use invoke. --- gnu/packages/python.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 642d7529b6..a984670f6e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2850,14 +2850,14 @@ (define-public python2-scikit-image (define-public python-cython (package (name "python-cython") - (version "0.27") + (version "0.28.4") (source (origin (method url-fetch) (uri (pypi-uri "Cython" version)) (sha256 (base32 - "02y0pp1nx77b8s1mpxc6da2dccl6wd31pp4ksi9via479qcvacmr")))) + "0imw9s2rbrh32clbl10csnwmig9p3nzkrd2baxxxfmnrsc42pb3n")))) (build-system python-build-system) ;; we need the full python package and not just the python-wrapper ;; because we need libpython3.3m.so @@ -2870,7 +2870,7 @@ (define-public python-cython ;; some tests require access to "$HOME/.cython" (lambda _ (setenv "HOME" "/tmp") #t)) (replace 'check - (lambda _ (zero? (system* "python" "runtests.py" "-vv"))))))) + (lambda _ (invoke "python" "runtests.py" "-vv")))))) (home-page "http://cython.org/") (synopsis "C extensions for Python") (description "Cython is an optimising static compiler for both the Python -- cgit v1.2.3 From 0fb0db002229cbe8dc77e95ab6bfe9f1e3d69578 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 3 Aug 2018 15:23:39 +0200 Subject: gnu: python-scipy: Only run default tests. * gnu/packages/python.scm (python-scipy)[arguments]: Only run the default test suite. The full test suite is too expensive and brittle. --- gnu/packages/python.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index d4448f23ad..8a3bfacdd7 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3800,7 +3800,7 @@ (define-public python-scipy (add-installed-pythonpath inputs outputs) (with-directory-excursion "/tmp" (invoke "python" "-c" - "import scipy; scipy.test('full', verbose=2)"))))))) + "import scipy; scipy.test(verbose=2)"))))))) (home-page "https://www.scipy.org/") (synopsis "The Scipy library provides efficient numerical routines") (description "The SciPy library is one of the core packages that make up -- cgit v1.2.3