guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/07: gnu: python-joblib: Update to 0.13.0.


From: Marius Bakke
Subject: 04/07: gnu: python-joblib: Update to 0.13.0.
Date: Mon, 19 Nov 2018 18:59:52 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit ff43d95807887030cd1d3538da614545116dfe25
Author: Marius Bakke <address@hidden>
Date:   Sun Nov 18 03:26:36 2018 +0100

    gnu: python-joblib: Update to 0.13.0.
    
    * gnu/packages/python.scm (python-joblib): Update to 0.13.0.
    [source](snippet): Remove.
    [arguments]: Remove 'disable-failing-tests' phase.  Add custom check phase.
    [native-inputs]: Remove PYTHON-NOSE, PYTHON-SPHINX, PYTHON-DOCUTILS and
    PYTHON-NUMPYDOC.  Add PYTHON-PYTEST.
---
 gnu/packages/python.scm | 36 +++++-------------------------------
 1 file changed, 5 insertions(+), 31 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 463a325..c7ec791 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2401,47 +2401,21 @@ logic-free templating system Mustache.")
 (define-public python-joblib
   (package
     (name "python-joblib")
-    (version "0.10.3")
+    (version "0.13.0")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "joblib" version))
               (sha256
                (base32
-                "0787k919zlfmgymprz5bzv0v1df5bbirlf3awrghmjgvkrd9dci9"))
-       (modules '((guix build utils)))
-       (snippet
-        '(begin
-           ;; Remove pre-compiled .pyc files from source.
-           (for-each delete-file-recursively
-                     (find-files "." "__pycache__" #:directories? #t))
-           (for-each delete-file (find-files "." "\\.pyc$"))
-           #t))))
+                "0612nazad8dxmn3xghfrmjax6456l4xy6hn9cngs7vydi14ds7v5"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
        (modify-phases %standard-phases
-         (add-before 'check 'disable-failing-tests
-           (lambda _
-             ;; This numpydoc tests fails for unknown reasons
-             (delete-file "doc/sphinxext/numpydoc/tests/test_docscrape.py")
-             ;; This numpydoc test depends on matplotlib, which is not a
-             ;; required input.
-             (delete-file 
"doc/sphinxext/numpydoc/tests/test_plot_directive.py")
-             ;; These tests fail to execute sys.executable
-             (substitute* "joblib/test/test_parallel.py"
-               (("import nose" line)
-                (string-append "from nose.plugins.skip import SkipTest\n" 
line))
-               (("def test_nested_parallel_warnings" line)
-                (string-append "@SkipTest\n" line))
-               (("def test_parallel_with_interactively_defined_functions" line)
-                (string-append "@SkipTest\n" line)))
-             #t)))))
-    ;; Provide nose to enable tests command
+         (replace 'check
+           (lambda _ (invoke "pytest" "-v" "joblib"))))))
     (native-inputs
-     `(("python-nose"       ,python-nose)
-       ("python-sphinx"     ,python-sphinx)
-       ("python-docutils"   ,python-docutils)
-       ("python-numpydoc"   ,python-numpydoc)))
+     `(("python-pytest" ,python-pytest)))
     (home-page "http://pythonhosted.org/joblib/";)
     (synopsis "Using Python functions as pipeline jobs")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]